/* ===================================
   The Pmax Team - Landing Page Styles
   =================================== */

/* CSS Variables */
:root {
    /* Colors */
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-lime: #00FF00;
    --color-cyan: #00FFFF;
    --color-magenta: #FF00FF;
    --color-yellow: #FFD700;
    --color-gray: #333333;
    --color-light-gray: #666666;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===================================
   Global Styles
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===================================
   Navigation
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
}

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

.logo img {
    height: 50px;
    width: auto;
}

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

.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a:hover {
    color: var(--color-lime);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-lime);
    transition: var(--transition-normal);
}

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

/* ===================================
   Section 1: Hero Section
   =================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--color-lime) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(100px);
    animation: float 6s ease-in-out infinite;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.green-heart {
    color: var(--color-lime);
    font-size: 4.5rem;
    display: inline-block;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20%, 40% { transform: scale(1); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 2rem;
    font-weight: 400;
}

.dynamic-text {
    font-weight: 700;
    display: inline-block;
    min-width: 300px;
    transition: var(--transition-normal);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition-normal);
    cursor: pointer;
    display: inline-block;
}

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

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-lime);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.team-photo {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 255, 0, 0.2);
    transition: var(--transition-slow);
}

.team-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 255, 0, 0.3);
}

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

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

/* ===================================
   Section 2: Industry Statement
   =================================== */

.industry-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--color-black) 0%, #0a0a0a 100%);
}

.industry-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.industry-statements {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.statement {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.8;
}

.highlight-text {
    font-weight: 700;
    transition: all 0.5s ease;
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
}

/* Highlight animation classes */
.highlight-text.active-1 {
    background-color: var(--color-lime);
    color: var(--color-black);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.highlight-text.active-2 {
    background-color: var(--color-lime);
    color: var(--color-black);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.highlight-text.active-3 {
    background-color: var(--color-lime);
    color: var(--color-black);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

/* ===================================
   Section 3: Content Cards
   =================================== */

.content-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-black);
}

.content-section .section-title {
    text-align: center;
    margin-bottom: 4rem;
}

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

.content-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
    cursor: pointer;
}

.content-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-lime);
    box-shadow: 0 20px 40px rgba(0, 255, 0, 0.2);
}

.card-icon {
    display: none;
}

.content-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-lime);
}

.content-card p {
    color: var(--color-light-gray);
    line-height: 1.8;
}

/* ===================================
   Section 4: Rotating Circles
   =================================== */

.circles-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--color-black) 0%, #0a0a0a 100%);
}

.circles-section .section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.circles-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    animation: rotateClockwise 20s linear infinite;
}

.circles-container:hover {
    animation-duration: 10s;
}

@keyframes rotateClockwise {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.circle-item {
    position: absolute;
    width: 120px;
    height: 120px;
    left: 50%;
    top: 50%;
    margin-left: -60px;
    margin-top: -60px;
    transform-origin: center;
    transform: rotate(var(--rotation)) translateY(-150px);
}

.circle-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-lime) 0%, #00cc00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
    animation: counterRotate 20s linear infinite;
}

.circles-container:hover .circle-content {
    animation-duration: 10s;
}

@keyframes counterRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.circle-content span {
    color: var(--color-black);
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
}

/* ===================================
   Section 5: Why Choose Pmax Team
   =================================== */

.why-choose-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-black);
}

.why-choose-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.why-choose-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.lead-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-lime);
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(0, 255, 0, 0.2);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-lime);
    box-shadow: 0 15px 40px rgba(0, 255, 0, 0.2);
}

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

.stat-label {
    font-size: 1rem;
    color: var(--color-light-gray);
    font-weight: 500;
}

/* ===================================
   Section 6: Solutions (6 Cards Grid)
   =================================== */

.solutions-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--color-black) 0%, #0a0a0a 100%);
}

.solutions-section .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-light-gray);
    margin-bottom: 4rem;
}

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

.solution-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-lime);
    box-shadow: 0 20px 50px rgba(0, 255, 0, 0.3);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-lime), var(--color-cyan));
    opacity: 0;
    transition: var(--transition-normal);
}

.solution-card:hover::before {
    opacity: 1;
}

/* Featured Card Styling */
.featured-card {
    border-color: var(--color-lime);
    background: linear-gradient(135deg, #1a2a1a 0%, #0d150d 100%);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--color-lime);
    color: var(--color-black);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.solution-header {
    margin-bottom: 1.5rem;
}

.solution-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-lime);
    margin-bottom: 0.5rem;
}

.solution-title sup {
    font-size: 1.2rem;
}

.solution-tagline {
    font-size: 0.9rem;
    color: var(--color-light-gray);
    font-weight: 500;
}

.solution-body {
    flex: 1;
    margin-bottom: 1.5rem;
}

.solution-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-light-gray);
}

.solution-footer {
    display: flex;
    justify-content: flex-start;
}

.btn-explore {
    background-color: var(--color-lime);
    color: var(--color-black);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: lowercase;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 0, 0.4);
}

.btn-explore::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-explore:active::after {
    width: 300px;
    height: 300px;
}

/* ===================================
   Contact Section
   =================================== */

.contact-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-black);
    text-align: center;
}

.contact-section .section-title {
    margin-bottom: 1rem;
}

.contact-section .section-subtitle {
    margin-bottom: 2rem;
}

.contact-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: linear-gradient(180deg, var(--color-black) 0%, #0a0a0a 100%);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 255, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
}

.footer-social a svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    color: var(--color-lime);
}

.footer-social a:hover svg {
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-calendly,
.footer-email {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
}

.footer-calendly {
    background-color: var(--color-lime);
    color: var(--color-black);
    font-weight: 600;
}

.footer-calendly:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
}

.footer-email:hover {
    color: var(--color-lime);
}

.footer-divider {
    color: var(--color-light-gray);
    font-size: 0.9rem;
}

.footer-bottom p {
    color: var(--color-light-gray);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ===================================
   Responsive Design
   =================================== */

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

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .green-heart {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .statement {
        font-size: 1.2rem;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .circles-container {
        width: 300px;
        height: 300px;
    }
    
    .circle-item {
        width: 90px;
        height: 90px;
        margin-left: -45px;
        margin-top: -45px;
        transform: rotate(var(--rotation)) translateY(-110px);
    }
    
    .circle-content span {
        font-size: 0.75rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links,
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .green-heart {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .nav-links {
        display: none;
    }
}

/* ===================================
   Utility Classes
   =================================== */

.text-center {
    text-align: center;
}

.text-lime {
    color: var(--color-lime);
}

.bg-black {
    background-color: var(--color-black);
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ===================================
   Animations
   =================================== */

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

@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);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}