/* ===== CSS Variables ===== */
:root {
    --primary-color: #8b5cf6;
    --primary-dark: #7c3aed;
    --secondary-color: #3b82f6;
    --accent-color: #06b6d4;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    --gradient-bg: linear-gradient(180deg, #0a0a0f 0%, #0f0f1a 50%, #0a0a0f 100%);
    --border-color: rgba(139, 92, 246, 0.2);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(139, 92, 246, 0.3);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--text-primary);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-primary);
}

.btn-ghost {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-color);
}

.btn-ghost:hover {
    background: rgba(139, 92, 246, 0.2);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-normal);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.gradient-text {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-trust, .hero-urgency {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-trust i, .hero-urgency i {
    color: var(--primary-color);
}

.hero-urgency {
    background: rgba(234, 179, 8, 0.1);
    border-color: rgba(234, 179, 8, 0.3);
    animation-delay: 0.8s;
}

.hero-urgency i {
    color: #eab308;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease 1s forwards;
    opacity: 0;
}

.hero-form-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--text-muted);
    animation: fadeInUp 0.8s ease 1.2s forwards;
    opacity: 0;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: var(--text-muted);
    font-size: 1.5rem;
}

.hero-scroll a:hover {
    color: var(--primary-color);
}

/* ===== Section Styles ===== */
section {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 60px;
}

/* ===== About Section ===== */
.about {
    background: var(--gradient-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition-normal);
}

.highlight-card:hover {
    background: var(--bg-card-hover);
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.highlight-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.highlight-card h3 {
    font-size: 1.125rem;
    margin-bottom: 5px;
}

.highlight-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}



/* ===== About Profile Image ===== */
.profile-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

/* Profile Card Entrance Animation */
@keyframes profileCardEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.profile-card {
    animation: profileCardEntrance 0.6s ease-out forwards;
    opacity: 0;
    background: rgba(18, 18, 26, 0.8);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition-normal);
    flex: 1;
    max-width: 300px;
    min-width: 250px;
    position: relative;
    z-index: 1;
}

.profile-card:nth-child(1) {
    animation-delay: 0.2s;
}

.profile-card:nth-child(2) {
    animation-delay: 0.4s;
}

.profile-card > * {
    position: relative;
    z-index: 2;
}

/* Profile Card Shimmer Effect */
.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.profile-card:hover::before {
    left: 100%;
}

.profile-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 40px rgba(139, 92, 246, 0.4);
    border-color: rgba(139, 92, 246, 0.4);
    animation: profileCardPulse 2s ease-in-out infinite, profileCardBounce 0.6s ease;
}

/* Profile Card Bounce Animation */
@keyframes profileCardBounce {
    0%, 100% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(1.08);
    }
}

/* Profile Card Pulse Animation */
@keyframes profileCardPulse {
    0%, 100% {
        box-shadow: 0 8px 40px rgba(139, 92, 246, 0.4);
    }
    50% {
        box-shadow: 0 8px 50px rgba(139, 92, 246, 0.6), 0 0 20px rgba(59, 130, 246, 0.3);
    }
}

/* Profile Image Pulse Animation */
@keyframes profileImagePulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
    }
    50% {
        box-shadow: 0 0 25px rgba(139, 92, 246, 0.4), 0 0 35px rgba(59, 130, 246, 0.2);
    }
}

/* Profile Image Float + Rotation Combined */
@keyframes profileImageRotate {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-4px) rotate(1deg);
    }
    50% {
        transform: translateY(-8px) rotate(0deg);
    }
    75% {
        transform: translateY(-4px) rotate(-1deg);
    }
}

.profile-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid transparent;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3)) padding-box,
                linear-gradient(135deg, rgba(139, 92, 246, 0.6), rgba(59, 130, 246, 0.6)) border-box;
    position: relative;
    transition: var(--transition-normal);
    animation: profileImageRotate 5s ease-in-out infinite, profileImagePulse 3s ease-in-out infinite;
}

.profile-card:nth-child(1) .profile-image {
    animation-delay: 0s, 0.5s;
}

.profile-card:nth-child(2) .profile-image {
    animation-delay: 0.2s, 0.7s;
}

/* Rotating Gradient Border Animation */
@keyframes rotateGradient {
    0% {
        background: linear-gradient(0deg, rgba(139, 92, 246, 0.6), rgba(59, 130, 246, 0.6)) border-box;
    }
    25% {
        background: linear-gradient(90deg, rgba(139, 92, 246, 0.6), rgba(59, 130, 246, 0.6)) border-box;
    }
    50% {
        background: linear-gradient(180deg, rgba(139, 92, 246, 0.6), rgba(59, 130, 246, 0.6)) border-box;
    }
    75% {
        background: linear-gradient(270deg, rgba(139, 92, 246, 0.6), rgba(59, 130, 246, 0.6)) border-box;
    }
    100% {
        background: linear-gradient(360deg, rgba(139, 92, 246, 0.6), rgba(59, 130, 246, 0.6)) border-box;
    }
}



/* Profile Image Floating Animation */
@keyframes profileImageFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Profile Image Glowing Border Animation */
@keyframes profileImageGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.3), 0 0 40px rgba(59, 130, 246, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.5), 0 0 60px rgba(59, 130, 246, 0.3);
    }
}

.profile-card:hover .profile-image {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(59, 130, 246, 0.5)) padding-box,
                linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(59, 130, 246, 0.8)) border-box;
    animation: profileImageGlow 1.5s ease-in-out infinite, rotateGradient 3s linear infinite, profileImageBounce 0.6s ease;
    transform: scale(1.05);
}

/* Profile Image Bounce Animation */
@keyframes profileImageBounce {
    0%, 100% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(1.1);
    }
}

.profile-card:hover .profile-image img {
    transform: scale(1.15);
    filter: brightness(1.1) saturate(1.2);
}

/* Profile Image Overlay Effect */
.profile-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.0) 0%, rgba(59, 130, 246, 0.0) 100%);
    z-index: 1;
    transition: var(--transition-normal);
    pointer-events: none;
}

.profile-card:hover .profile-image::before {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.profile-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-placeholder i {
    font-size: 3rem;
    color: rgba(139, 92, 246, 0.6);
    animation: placeholderPulse 2s ease-in-out infinite;
}

.profile-placeholder:hover i {
    animation: placeholderPulse 1s ease-in-out infinite;
    color: rgba(139, 92, 246, 0.9);
}

/* Placeholder Pulse Animation */
@keyframes placeholderPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.profile-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    transition: var(--transition-normal);
}

.profile-card:hover .profile-info h3 {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.profile-role {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 8px;
    transition: var(--transition-normal);
}

.profile-card:hover .profile-role {
    color: var(--secondary-color);
}

.profile-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    transition: var(--transition-normal);
}

.profile-card:hover .profile-description {
    color: var(--text-primary);
}

/* Enhanced Profile Card Animations */

/* Tilt Effect on Hover */
.profile-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.profile-card:hover {
    transform: scale(1.05) rotateX(5deg) rotateY(5deg);
}

/* Particle Effect Background */
.profile-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.3) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.3) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.2) 0%, transparent 30%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: -1;
}

.profile-card:hover::after {
    opacity: 1;
    animation: particleFloat 3s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

/* Glow Ring Effect */
.profile-card:hover {
    box-shadow: 
        0 8px 40px rgba(139, 92, 246, 0.4),
        0 0 0 2px rgba(139, 92, 246, 0.3),
        0 0 20px rgba(59, 130, 246, 0.2),
        inset 0 0 20px rgba(139, 92, 246, 0.1);
}

/* Interactive Cursor Effect */
.profile-card {
    cursor: pointer;
}

.profile-card:active {
    transform: scale(0.98);
}

/* Smooth Icon Animation */
.profile-card:hover .profile-info h3 {
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(139, 92, 246, 0.6), 0 0 30px rgba(59, 130, 246, 0.4);
    }
}

/* Role Badge Animation */
.profile-card:hover .profile-role {
    animation: rolePulse 1.5s ease-in-out infinite;
}

@keyframes rolePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Description Fade In */
.profile-card:hover .profile-description {
    animation: fadeInScale 0.5s ease forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0.7;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Profile Card Border Animation */
.profile-card {
    position: relative;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(139, 92, 246, 0.5), 
        rgba(59, 130, 246, 0.5), 
        rgba(6, 182, 212, 0.5),
        rgba(139, 92, 246, 0.5));
    background-size: 400% 400%;
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-card:hover::before {
    opacity: 1;
    animation: borderGradient 3s ease infinite;
}

@keyframes borderGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Profile Card Lift Effect */
.profile-card {
    transition: 
        transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.4s ease;
}

.profile-card:hover {
    transform: translateY(-15px) scale(1.05);
}

/* Profile Image Zoom Effect */
.profile-card:hover .profile-image img {
    animation: imageZoom 0.6s ease forwards;
}

@keyframes imageZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.15);
    }
}

/* Profile Card Ripple Effect */
.profile-card {
    overflow: hidden;
}

.profile-card .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.4);
    transform: scale(0);
    animation: rippleEffect 0.6s linear;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Profile Card Shadow Layers */
.profile-card:hover {
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 20px 60px rgba(139, 92, 246, 0.2),
        0 30px 80px rgba(59, 130, 246, 0.1);
}

/* Profile Card Entrance Stagger */
.profile-card:nth-child(1) {
    animation-delay: 0.2s;
}

.profile-card:nth-child(2) {
    animation-delay: 0.4s;
}

/* Profile Card Hover State Transition */
.profile-card {
    will-change: transform, box-shadow;
}

/* Profile Card Focus State */
.profile-card:focus {
    outline: none;
    box-shadow: 
        0 0 0 3px rgba(139, 92, 246, 0.5),
        0 8px 40px rgba(139, 92, 246, 0.4);
}

/* Profile Card Active State */
.profile-card:active {
    transform: scale(0.98) translateY(-5px);
}

/* Profile Card Disabled State */
.profile-card:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Profile Card Loading State */
.profile-card.loading {
    animation: loadingPulse 1.5s ease-in-out infinite;
}

@keyframes loadingPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Profile Card Success State */
.profile-card.success {
    border-color: #10b981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

/* Profile Card Error State */
.profile-card.error {
    border-color: #ef4444;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}



/* ===== Team Section ===== */
.team {
    background: var(--bg-darker);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.team-role {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.team-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== Team Roles in About Section ===== */
.team-roles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.role-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: var(--transition-normal);
}

.role-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.role-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.role-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.role-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.role-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===== Trust Line ===== */
.trust-line {
    background: rgba(139, 92, 246, 0.05);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    text-align: center;
}

.trust-line p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.trust-line i {
    color: var(--primary-color);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.about-text-wrapper {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.about-greeting {
    margin-bottom: 25px;
}

.about-greeting span {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    margin-bottom: 8px;
}

.about-greeting p {
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 500;
}

.about-team-intro {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    font-style: italic;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.about-tag i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

/* ===== Services Section ===== */
.services {
    background: var(--bg-darker);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
}

.service-card:hover .service-icon i {
    color: var(--text-primary);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* ===== Projects Section ===== */
.projects {
    background: var(--gradient-bg);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.project-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(59, 130, 246, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.project-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.project-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.projects-note {
    text-align: center;
    margin-top: 40px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.projects-note i {
    margin-right: 8px;
}

/* ===== Why Choose Section ===== */
.why-choose {
    background: var(--bg-darker);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ===== Testimonials Section ===== */
.testimonials {
    background: var(--gradient-bg);
}

.testimonials-scroll-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonials-scroll-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
    flex: 1;
}

.testimonials-scroll-container::-webkit-scrollbar {
    display: none;
}

.scroll-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.scroll-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.scroll-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.scroll-btn:disabled:hover {
    background: var(--bg-card);
    border-color: var(--border-color);
    color: var(--text-primary);
    transform: none;
}

.testimonial-card {
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #eab308;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    max-height: 120px;
    overflow-y: auto;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(139, 92, 246, 0.3) transparent;
    position: relative;
}

/* Gradient fade effect to indicate scrollable content */
.testimonial-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 8px;
    height: 20px;
    background: linear-gradient(to top, var(--bg-card) 0%, transparent 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show gradient when content is scrollable */
.testimonial-text:hover::after {
    opacity: 1;
}

/* Custom scrollbar for webkit browsers */
.testimonial-text::-webkit-scrollbar {
    width: 6px;
}

.testimonial-text::-webkit-scrollbar-track {
    background: transparent;
}

.testimonial-text::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.3);
    border-radius: 3px;
}

.testimonial-text::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.5);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===== Website Types Section ===== */
.website-types {
    padding: 100px 0;
    background: var(--bg-dark);
}

.website-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.website-type-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.website-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
}

.website-type-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.website-type-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.card-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.website-type-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.website-type-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
}

.features-list {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
}

.features-list li i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

/* ===== Pricing Plans Section ===== */
.pricing-plans {
    padding: 100px 0;
    background: var(--gradient-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.best-value-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-header {
    margin-bottom: 30px;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: var(--primary-color);
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Review Section ===== */
.review-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.review-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.review-form .form-group {
    margin-bottom: 25px;
}

.review-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-primary);
}

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast);
}

.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.review-form input::placeholder,
.review-form textarea::placeholder {
    color: var(--text-muted);
}

.review-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 8px;
    font-size: 28px;
    cursor: pointer;
    margin-top: 5px;
}

.star-rating i {
    color: var(--text-muted);
    transition: color 0.2s, transform 0.2s;
}

.star-rating i.active,
.star-rating i.hover {
    color: #ffc107;
    transform: scale(1.1);
}

.star-rating i:hover {
    transform: scale(1.2);
}

/* No Reviews Message */
.no-reviews {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    padding: 40px;
    font-size: 1.1rem;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-form-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ===== Contact Section ===== */
.contact {
    background: var(--bg-darker);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition-normal);
}

.contact-item:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.contact-details h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-details a, .contact-details p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-note {
    padding: 20px;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 12px;
    margin-top: 10px;
}

.contact-note p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

.contact-note i {
    color: var(--primary-color);
}

.contact-note .fa-whatsapp {
    color: #25d366;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-primary);
    font-family: inherit;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-note {
    text-align: center;
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-darker);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

.footer-brand .logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: var(--text-primary);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
}

.whatsapp-float:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .profile-cards {
        order: -1;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 100px;
        gap: 30px;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        height: 100vh;
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        padding: 15px;
        border-radius: 50%;
    }

    .project-buttons {
        flex-direction: column;
    }
    
    .review-form {
        padding: 24px;
        margin: 0 16px;
    }
    
    .star-rating {
        font-size: 24px;
    }

    .project-buttons .btn {
        width: 100%;
    }
    
    .website-types-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    section {
        padding: 70px 0;
    }

    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-intro {
        font-size: 1rem;
    }

    .hero-profile {
        width: 80px;
        height: 80px;
    }
    
    .profile-cards {
        flex-direction: column;
        gap: 15px;
    }
    
    .profile-card {
        max-width: 100%;
        min-width: unset;
    }

    .profile-image {
        width: 150px;
        height: 150px;
    }

    .profile-placeholder i {
        font-size: 2.5rem;
    }

    .about-greeting span {
        font-size: 1.5rem;
    }

    .hero-trust, .hero-urgency {
        font-size: 0.875rem;
        padding: 10px 16px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .service-card,
    .project-card,
    .testimonial-card,
    .feature-card {
        padding: 25px 20px;
    }

    .contact-form {
        padding: 25px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
    }
}

/* ===== Utility Classes ===== */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Mobile Responsive for Team Section ===== */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-card {
        padding: 30px 20px;
    }
    
    .team-image {
        width: 120px;
        height: 120px;
    }
    
    .team-roles {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .role-card {
        padding: 20px;
    }
    
    .trust-line p {
        font-size: 1rem;
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .team-image {
        width: 100px;
        height: 100px;
    }
    
    .team-info h3 {
        font-size: 1.25rem;
    }
    
    .team-role {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
}

/* ===== Enhanced Responsive Design for All Devices ===== */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
    }

    .section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }

    .testimonials-scroll-container {
        gap: 25px;
    }

    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 30px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .services-grid,
    .projects-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .profile-cards {
        flex-direction: row;
        gap: 30px;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .profile-card {
        max-width: 280px;
        min-width: auto;
        flex: 0 1 280px;
    }

    .profile-image {
        width: 180px;
        height: 180px;
        margin: 0 auto 15px;
    }

    .testimonials-scroll-wrapper {
        gap: 10px;
    }

    .scroll-btn {
        width: 40px;
        height: 40px;
    }

    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
        padding: 25px;
    }

    .testimonial-text {
        max-height: 100px;
        font-size: 0.95rem;
    }

    .testimonial-author {
        gap: 12px;
    }

    .author-info h4 {
        font-size: 0.9rem;
    }

    .author-info p {
        font-size: 0.8rem;
    }

    .website-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-form {
        padding: 30px;
        margin: 0 20px;
    }

    .review-form .form-group {
        margin-bottom: 20px;
    }
}

/* Small tablets and large phones */
@media (max-width: 768px) {
    .services-grid,
    .projects-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .profile-cards {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .profile-card {
        max-width: 300px;
        min-width: 250px;
        flex: 1;
    }

    .profile-image {
        width: 150px;
        height: 150px;
        margin: 0 auto 15px;
    }

    .testimonials-scroll-wrapper {
        gap: 8px;
        flex-direction: column;
        align-items: stretch;
    }

    .testimonials-scroll-container {
        flex-direction: column;
        gap: 20px;
        overflow-x: visible;
        overflow-y: visible;
        max-height: 600px;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: rgba(139, 92, 246, 0.3) transparent;
    }

    .testimonials-scroll-container::-webkit-scrollbar {
        width: 4px;
    }

    .testimonials-scroll-container::-webkit-scrollbar-track {
        background: transparent;
    }

    .testimonials-scroll-container::-webkit-scrollbar-thumb {
        background: rgba(139, 92, 246, 0.3);
        border-radius: 2px;
    }

    .scroll-btn {
        display: none;
    }

    .testimonial-card {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        padding: 20px;
        margin-bottom: 15px;
        cursor: default;
        touch-action: manipulation;
    }

    .testimonial-card:hover {
        transform: none;
    }

    .testimonial-text {
        max-height: 100px;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .testimonial-stars {
        margin-bottom: 15px;
    }

    .testimonial-author {
        gap: 10px;
    }

    .author-avatar {
        width: 35px;
        height: 35px;
    }

    .author-avatar i {
        font-size: 0.9rem;
    }

    .author-info h4 {
        font-size: 0.85rem;
    }

    .author-info p {
        font-size: 0.75rem;
    }

    .website-types-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .highlight-card {
        flex-direction: column;
        text-align: center;
    }

    .review-section {
        padding: 60px 0;
    }

    .review-form {
        padding: 24px;
        margin: 0 16px;
        max-width: 100%;
    }

    .review-form .form-group {
        margin-bottom: 18px;
    }

    .review-form label {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .review-form input,
    .review-form textarea {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .review-form textarea {
        min-height: 100px;
    }
}

/* Mobile phones */
@media (max-width: 576px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-trust,
    .hero-urgency {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .testimonials {
        padding: 60px 0;
    }

    .testimonials-scroll-container {
        max-height: 500px;
        gap: 15px;
    }

    .testimonial-card {
        padding: 18px;
        border-radius: 16px;
    }

    .testimonial-text {
        max-height: 80px;
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 18px;
    }

    .testimonial-stars {
        margin-bottom: 12px;
    }

    .testimonial-stars i {
        font-size: 0.9rem;
    }

    .testimonial-author {
        gap: 8px;
    }

    .author-avatar {
        width: 30px;
        height: 30px;
    }

    .author-avatar i {
        font-size: 0.8rem;
    }

    .author-info h4 {
        font-size: 0.8rem;
    }

    .author-info p {
        font-size: 0.7rem;
    }

    .review-section {
        padding: 50px 0;
    }

    .review-form {
        padding: 20px;
        margin: 0 12px;
    }

    .review-form .form-group {
        margin-bottom: 16px;
    }

    .review-form label {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .review-form input,
    .review-form textarea {
        padding: 10px 14px;
        font-size: 0.9rem;
        -webkit-appearance: none;
        appearance: none;
        border-radius: 8px;
    }

    .review-form textarea {
        resize: vertical;
        min-height: 80px;
    }

    .no-reviews {
        font-size: 0.9rem;
        padding: 20px;
        text-align: center;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .testimonials-scroll-container {
        max-height: 400px;
        gap: 12px;
    }

    .testimonial-card {
        padding: 16px;
    }

    .testimonial-text {
        max-height: 70px;
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    .testimonial-stars i {
        font-size: 0.8rem;
    }

    .author-avatar {
        width: 28px;
        height: 28px;
    }

    .author-avatar i {
        font-size: 0.7rem;
    }

    .author-info h4 {
        font-size: 0.75rem;
    }

    .author-info p {
        font-size: 0.65rem;
    }

    .review-form {
        padding: 18px;
        margin: 0 8px;
    }

    .review-form input,
    .review-form textarea {
        padding: 8px 12px;
        font-size: 0.85rem;
        -webkit-appearance: none;
        appearance: none;
        border-radius: 6px;
        min-height: 44px; /* iOS touch target minimum */
    }

    .review-form textarea {
        min-height: 70px;
        resize: vertical;
    }

    .no-reviews {
        font-size: 0.85rem;
        padding: 15px;
    }
    
    .scroll-btn {
        width: 36px;
        height: 36px;
    }
    
    .testimonial-card {
        min-width: 260px;
        max-width: 260px;
    }
    
    .website-types-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .highlight-card {
        flex-direction: column;
        text-align: center;
    }
    
    .about-tags {
        justify-content: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact-note {
        text-align: center;
    }
    
    .contact-note p {
        justify-content: center;
    }
}

/* Mobile phones */
@media (max-width: 576px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-trust,
    .hero-urgency {
        font-size: 0.8rem;
        padding: 8px 14px;
        flex-direction: column;
        gap: 5px;
    }
    
    .hero-cta {
        gap: 12px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .profile-card {
        padding: 20px;
    }
    
    .profile-info h3 {
        font-size: 1.25rem;
    }
    
    .profile-role {
        font-size: 0.9rem;
    }
    
    .profile-description {
        font-size: 0.85rem;
    }
    
    .service-card,
    .project-card,
    .testimonial-card,
    .feature-card,
    .website-type-card,
    .pricing-card {
        padding: 20px 15px;
    }
    
    .service-icon,
    .feature-icon,
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i,
    .feature-icon i,
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .plan-price {
        font-size: 2.5rem;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 15px;
    }
    
    .review-form {
        padding: 20px;
        margin: 0 10px;
    }
    
    .star-rating {
        font-size: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px;
    }
    
    .whatsapp-float i {
        font-size: 1.25rem;
    }
}

/* Extra small phones */
@media (max-width: 375px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .about-greeting span {
        font-size: 1.25rem;
    }
    
    .about-greeting p {
        font-size: 1rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .highlight-card {
        padding: 20px;
    }
    
    .highlight-card h3 {
        font-size: 1rem;
    }
    
    .highlight-card p {
        font-size: 0.85rem;
    }
    
    .service-card h3,
    .project-info h3,
    .feature-card h3,
    .website-type-card h3,
    .plan-header h3 {
        font-size: 1.1rem;
    }
    
    .service-card p,
    .project-info p,
    .feature-card p,
    .website-type-card p,
    .testimonial-text {
        font-size: 0.9rem;
        max-height: 100px;
    }
    
    .card-price {
        font-size: 1.25rem;
    }
    
    .plan-price {
        font-size: 2rem;
    }
    
    .plan-features li {
        font-size: 0.9rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .contact-details h3 {
        font-size: 0.9rem;
    }
    
    .contact-details a,
    .contact-details p {
        font-size: 0.85rem;
    }
    
    .footer-brand p {
        font-size: 0.85rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* Landscape mode for mobile phones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .hero-cta {
        margin-top: 20px;
    }
}

/* High DPI / Retina displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img,
    .profile-image img,
    .project-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-scroll {
        animation: none;
    }
    
    .profile-card,
    .profile-image,
    .profile-placeholder i {
        animation: none;
    }
    
    .profile-card {
        opacity: 1 !important;
    }
}

/* Dark mode preference (already dark, but ensure consistency) */
@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: dark;
    }
}

/* Print styles */
@media print {
    .navbar,
    .whatsapp-float,
    .hero-scroll,
    .mobile-menu-btn {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    section {
        padding: 40px 0;
        page-break-inside: avoid;
    }
    
    .btn {
        border: 1px solid #000;
    }
}
