/* ============================================
   TALENTSMITH - MODERN DARK UI
   HR Consultancy Landing Page
   ============================================ */

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

:root {
    --primary: #00d4ff;
    --secondary: #00ffaa;
    --accent: #9d4edd;
    --teal: #00e5d4;
    --purple: #a855f7;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-navy: #0f172a;
    --bg-card: rgba(26, 26, 46, 0.4);
    --text-light: #e0e0e0;
    --text-muted: rgba(224, 224, 224, 0.6);
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.3);
    --shadow-glow-strong: 0 0 50px rgba(0, 212, 255, 0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--bg-dark);
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(157, 78, 221, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 255, 170, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0f172a 100%);
    background-size: 200% 200%;
    animation: gradientShift 20s ease infinite;
    z-index: -2;
    pointer-events: none;
}

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

.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 212, 255, 0.03) 2px, rgba(0, 212, 255, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(157, 78, 221, 0.03) 2px, rgba(157, 78, 221, 0.03) 4px);
    z-index: -1;
    pointer-events: none;
    animation: gridMove 25s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: var(--transition);
}

.header.sticky {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo h1 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition);
}

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

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

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #0099cc);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), #00cc88);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 255, 170, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 255, 170, 0.6);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

.btn-block {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 200px 0 140px;
    text-align: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 25px rgba(255, 107, 107, 0.5);
    backdrop-filter: blur(10px);
}

.fire-icon {
    font-size: 1.3rem;
    animation: flicker 1.5s infinite;
}

@keyframes flicker {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1) rotate(-5deg); }
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: var(--text-muted);
    animation: fadeInUp 1s ease 0.2s both;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition);
    min-width: 140px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.badge-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-glow-strong);
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.1);
}

.badge-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.badge-item span:last-child {
    font-weight: 600;
    color: var(--text-light);
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -1px;
}

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

/* Why Us Section */
.why-us {
    background: var(--bg-darker);
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.why-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    transform-style: preserve-3d;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

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

.why-card:hover {
    transform: translateY(-12px) rotateX(5deg) rotateY(2deg);
    box-shadow: var(--shadow-glow-strong);
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.1);
}

.why-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.6));
    transition: var(--transition);
}

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

.why-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 700;
}

.why-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* Services Section */
.services {
    background: var(--bg-dark);
    position: relative;
}

.service-category {
    margin-bottom: 5rem;
}

.category-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2.5rem 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
}

.services-carousel::-webkit-scrollbar {
    display: none;
}

.service-card {
    min-width: 300px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: var(--transition);
    transform-style: preserve-3d;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

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

.service-card:hover,
.service-card.active {
    transform: translateY(-18px) rotateX(8deg) rotateY(5deg) scale(1.05);
    box-shadow: var(--shadow-glow-strong);
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(157, 78, 221, 0.15));
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.7));
    transition: var(--transition);
}

.service-card:hover .service-icon,
.service-card.active .service-icon {
    transform: scale(1.25) rotate(10deg);
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

/* Pricing Section */
.pricing {
    background: var(--bg-darker);
    position: relative;
}

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

.discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 25px rgba(255, 107, 107, 0.5);
    backdrop-filter: blur(10px);
}

.pricing-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

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

.pricing-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-glow-strong);
    border-color: var(--primary);
}

.pricing-card-featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-glow);
    animation: featuredGlow 3s ease-in-out infinite;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(157, 78, 221, 0.1));
}

@keyframes featuredGlow {
    0%, 100% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.4); }
    50% { box-shadow: 0 0 60px rgba(0, 212, 255, 0.7); }
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.5);
    z-index: 10;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.pricing-card-header h3 {
    font-size: 1.35rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.price-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.price-old {
    font-size: 1.8rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-new {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.25rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.pricing-features li:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Reviews Section */
.reviews {
    background: var(--bg-dark);
}

.review-form {
    max-width: 650px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    padding: 3.5rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(26, 26, 46, 0.5);
    color: var(--text-light);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.2);
    background: rgba(26, 26, 46, 0.8);
}

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

.rating-label {
    display: block;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.05rem;
}

.rating-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.rating-stars input[type="radio"] {
    display: none;
}

.rating-stars label {
    font-size: 2.5rem;
    cursor: pointer;
    color: #444;
    transition: var(--transition);
    filter: grayscale(1);
}

.rating-stars input[type="radio"]:checked ~ label,
.rating-stars label:hover,
.rating-stars label:hover ~ label {
    color: #ffd700;
    filter: grayscale(0);
    transform: scale(1.3);
}

/* Contact Section */
.contact {
    background: var(--bg-darker);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
}

.contact-card:hover {
    transform: translateY(-12px) rotateX(3deg);
    box-shadow: var(--shadow-glow-strong);
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.1);
}

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.7));
    transition: var(--transition);
}

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

.contact-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 700;
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

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

.footer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

.footer-section p {
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-section ul li:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.footer-link:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero {
        padding: 160px 0 100px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 320px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .review-form {
        padding: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .offer-badge,
    .discount-badge {
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
    }
}

html {
    scroll-behavior: smooth;
}
/* ============================================
   DARK / LIGHT MODE TOGGLE (MINIMAL ADD ONLY)
   ============================================ */

/* 1. Theme Toggle Icon Button */
.theme-toggle {
    margin-left: 12px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: var(--text-light);
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.theme-toggle:hover {
    background: rgba(0,212,255,0.15);
    border-color: var(--primary);
    transform: scale(1.1);
}

/* 2. Light Mode (Only Variable Override) */
body.light-mode {
    --bg-dark: #f9fafb;
    --bg-darker: #ffffff;

    --text-light: #111827;
    --text-muted: rgba(0,0,0,0.6);

    --glass-bg: rgba(0,0,0,0.04);
    --glass-border: rgba(0,0,0,0.12);
}

/* 3. Light Mode Background Fix */
body.light-mode .bg-animation {
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.10) 0%, transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(157, 78, 221, 0.08) 0%, transparent 55%),
        linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

body.light-mode .bg-particles {
    opacity: 0.15;
}

/* ============================================
   FIX HEADER NAVBAR (STICKY + INLINE ALIGNMENT)
   ============================================ */

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Keep nav links center */
.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Right side actions (Button + Toggle) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Button height match */
.header-actions .btn {
    height: 45px;
    padding: 0.7rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Theme toggle match button */
.theme-toggle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ✅ FIX STICKY HEADER ALWAYS */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/* Mobile Responsive Fix */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .header-actions {
        justify-content: center;
        width: 100%;
    }
}

/* ============================================
   LIGHT MODE FIX PATCH (ADD ONLY)
   Fix White Background + Navbar Visibility
   ============================================ */

/* Softer Light Background */
body.light-mode {
    --bg-dark: #f4f6fb;       /* soft gray-blue */
    --bg-darker: #eef2f7;     /* section contrast */

    --text-light: #111827;
    --text-muted: rgba(0, 0, 0, 0.65);

    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(0, 0, 0, 0.08);
}

/* Sections should not look plain white */
body.light-mode .why-us,
body.light-mode .services,
body.light-mode .reviews,
body.light-mode .contact {
    background: var(--bg-darker);
}

/* Cards look clean in light mode */
body.light-mode .service-card,
body.light-mode .why-card,
body.light-mode .contact-card,
body.light-mode .review-form {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Navbar becomes visible in light mode */
body.light-mode .header {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Navbar links visible */
body.light-mode .nav-link {
    color: #111827 !important;
    font-weight: 600;
}

/* Hover stays same */
body.light-mode .nav-link:hover {
    color: var(--primary) !important;
}

/* Footer stays dark for contrast */
body.light-mode .footer {
    background: #0a0a0f;
}

/* ============================================
   FOOTER FIX (TEXT VISIBILITY + CLEAN LOOK)
   ============================================ */

.footer {
    background: #050508 !important;
}

.footer-section p,
.footer-section li,
.footer-section a {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1rem;
}

.footer-section a {
    text-decoration: none;
    font-weight: 500;
}

.footer-section a:hover {
    color: var(--primary) !important;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary) !important;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.65) !important;
}
/* ============================================
   PREMIUM LIGHT MODE (FULL WEBSITE MATCH)
   Inspired by Modern Glass UI
   ============================================ */

body.light-mode {

  /* Backgrounds */
  --bg-dark: #f8fafc;
  --bg-darker: #eef2ff;

  /* Text */
  --text-light: #0f172a;
  --text-muted: rgba(15, 23, 42, 0.65);

  /* Glass Cards */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(0, 0, 0, 0.08);

  /* Shadows */
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 25px rgba(0, 212, 255, 0.15);
}


/* ============================================
   LIGHT MODE BACKGROUND (Premium Gradient)
   ============================================ */

body.light-mode .bg-animation {
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.12) 0%, transparent 55%),
    linear-gradient(135deg, #ffffff 0%, #f1f5ff 100%);
}

body.light-mode .bg-particles {
  opacity: 0.12;
}


/* ============================================
   SECTIONS LOOK LIKE DESIGN IMAGE
   ============================================ */

body.light-mode section {
  background: transparent;
}

body.light-mode .why-us,
body.light-mode .services,
body.light-mode .reviews,
body.light-mode .contact {
  background: rgba(255, 255, 255, 0.55);
}


/* ============================================
   CARDS = GLASS WHITE PREMIUM
   ============================================ */

body.light-mode .service-card,
body.light-mode .why-card,
body.light-mode .contact-card,
body.light-mode .review-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

body.light-mode .service-card:hover,
body.light-mode .why-card:hover {
  background: rgba(240, 250, 255, 0.95);
  box-shadow: 0 12px 35px rgba(0, 212, 255, 0.25);
}


/* ============================================
   NAVBAR FIX IN LIGHT MODE
   ============================================ */

body.light-mode .header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .nav-link {
  color: #0f172a !important;
  font-weight: 600;
}

body.light-mode .nav-link:hover {
  color: var(--primary) !important;
}


/* ============================================
   HERO TEXT FIX  
   ============================================ */

body.light-mode .hero-subtitle {
  color: rgba(15, 23, 42, 0.7);
}


/* ============================================
   FOOTER SHOULD STAY DARK ALWAYS
   ============================================ */

body.light-mode .footer {
  background: #050508 !important;
}

body.light-mode .footer p,
body.light-mode .footer a,
body.light-mode .footer li {
  color: rgba(255, 255, 255, 0.85) !important;
}

body.light-mode .footer a:hover {
  color: var(--primary) !important;
}

/* ============================================
   NEW SECTIONS (Review snippets, Success stories, Job alerts, etc.)
   ============================================ */

.reviews-snippets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.review-snippet-card {
  text-align: center;
  padding: 1.5rem;
}

.review-stars-inline {
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: #facc15;
  margin-bottom: 0.75rem;
}

.review-snippet-text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.review-snippet-name {
  font-size: 0.9rem;
  color: var(--primary);
}

/* Popular services grid (homepage) */
.popular-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.popular-service-card {
  text-align: center;
  padding: 1.5rem;
}

.popular-service-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Google badge inline (homepage) */
.google-badge-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 0.75rem 1.25rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}
.google-stars-inline { font-size: 1.2rem; letter-spacing: 1px; color: #facc15; }
.google-rating-inline { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.google-text-inline { color: var(--text-muted); font-size: 0.95rem; }

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

.success-story-card {
  text-align: center;
}

.job-alerts-box {
  max-width: 560px;
  margin: 2rem auto 0;
  padding: 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  text-align: center;
}

.job-alerts-note {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.pricing-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.resume-check-box {
  max-width: 560px;
  margin: 2rem auto 0;
  padding: 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

.resume-upload-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border: 2px dashed var(--glass-border);
  border-radius: 10px;
  background: rgba(26, 26, 46, 0.5);
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 0.75rem;
}

.resume-upload-label:hover {
  border-color: var(--primary);
  background: rgba(0, 212, 255, 0.08);
}

.resume-upload-icon { font-size: 1.25rem; }

.resume-file-input {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}

.resume-file-name {
  color: var(--secondary);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  display: none;
}

.resume-check-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.resume-check-result {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 10px;
  border: 1px solid var(--primary);
}

.resume-score { color: var(--primary); margin-bottom: 0.5rem; }
.resume-tip { color: var(--text-muted); font-size: 0.95rem; margin-top: 0.5rem; }

.referral-book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-form-box {
  max-width: 480px;
  margin: 2rem auto 0;
  padding: 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  border: 2px solid var(--glass-border);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: rgba(26, 26, 46, 0.5);
  color: var(--text-light);
  transition: var(--transition);
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

/* Featured job badge (Jobs page) */
.job-card-featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-glow);
  position: relative;
}

.job-card-featured::before {
  content: "Featured";
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #0a0a0f;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
}

/* ============================================
   Scroll to top button (all pages)
   ============================================ */
.scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.scroll-to-top:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 212, 255, 0.4);
}

body.light-mode .scroll-to-top {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--primary);
}

body.light-mode .scroll-to-top:hover {
  background: rgba(0, 212, 255, 0.15);
  border-color: var(--primary);
}
