/* Business Starter Template - Dark Theme with Orange Accents */

:root {
    --primary: #ff7a18;           /* Vibrant orange */
    --primary-dark: #e66f00;      /* Darker orange */
    --primary-light: rgba(255,122,24,0.10);
    --secondary: #ffb86b;         /* Warm secondary */
    --bg-dark: #0b0f14;           /* Main page background */
    --bg-darker: #050607;         /* Deeper sections */
    --card: #0f1720;              /* Card / panel background */
    --muted: #9aa4ad;             /* Muted text */
    --text-light: #e6eef6;        /* Primary text */
    --text-body: #c7d2d9;         /* Secondary text */
    --border: rgba(255,255,255,0.06);
    --gradient: linear-gradient(135deg, #ff7a18 0%, #ffb86b 100%);
}

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

/* Base */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(6, 8, 10, 0.6);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    color: var(--primary);
    font-size: 1.5rem;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--text-body);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.25s;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: #081014;
    box-shadow: 0 8px 30px rgba(255,122,24,0.12), 0 2px 6px rgba(0,0,0,0.5);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--text-light);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-white {
    background: rgba(255,255,255,0.06);
    color: var(--text-light);
}

.btn-white:hover {
    background: rgba(255,255,255,0.09);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text-light);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.06);
    color: var(--primary);
}

.btn-lg {
    padding: 14px 30px;
    font-size: 1rem;
}

.btn-icon {
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(180deg, rgba(255,122,24,0.02) 0%, transparent 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--primary-light);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    box-shadow: 0 6px 18px rgba(255,122,24,0.06);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 12px rgba(255,122,24,0.6);
}

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

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.05;
    color: var(--text-light);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 32px;
    max-width: 560px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
}

.hero-clients {
    display: flex;
    align-items: center;
    gap: 14px;
}

.client-avatars {
    display: flex;
}

.client-avatars img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    margin-left: -12px;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

.client-avatars img:first-child {
    margin-left: 0;
}

.client-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
}

.client-info span {
    font-size: 0.85rem;
    color: var(--muted);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-main img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 90px rgba(2,6,23,0.7);
    border: 1px solid rgba(255,255,255,0.02);
}

.hero-stat-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(2,6,23,0.7);
    border: 1px solid rgba(255,255,255,0.04);
    color: var(--text-light);
}

.hero-stat-card.stat-1 {
    top: 18%;
    left: -20px;
}

.hero-stat-card.stat-2 {
    bottom: 12%;
    right: -20px;
}

.stat-icon {
    font-size: 1.6rem;
}

.hero-stat-card strong {
    display: block;
    font-size: 1.15rem;
    color: var(--primary);
}

.hero-stat-card span {
    font-size: 0.85rem;
    color: var(--muted);
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(255,122,24,0.08), rgba(0,0,0,0.02));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
    color: var(--text-light);
}

.stat-number {
    display: block;
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--primary);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--muted);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255,122,24,0.08);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 16px;
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.02rem;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto;
}

.section-text {
    color: var(--text-body);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* Services Section */
.services-section {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.32s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(2,6,23,0.7);
}

.service-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    filter: contrast(0.95) brightness(0.95);
}

.service-content {
    padding: 22px;
}

.service-icon {
    font-size: 1.9rem;
    margin-bottom: 12px;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-body);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.service-link {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
}

.service-link:hover {
    text-decoration: underline;
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background: transparent;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-images {
    position: relative;
}

.why-us-images .img-main {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(2,6,23,0.7);
    border: 1px solid rgba(255,255,255,0.03);
}

.why-us-images .img-secondary {
    position: absolute;
    bottom: -36px;
    right: -36px;
    border-radius: 12px;
    border: 5px solid var(--bg-dark);
    box-shadow: 0 15px 40px rgba(2,6,23,0.75);
}

.experience-badge {
    position: absolute;
    top: 24px;
    left: -24px;
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    color: #081014;
    padding: 18px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255,122,24,0.12);
}

.experience-badge strong {
    display: block;
    font-size: 1.9rem;
    color: #081014;
}

.experience-badge span {
    font-size: 0.8rem;
    opacity: 0.95;
    color: #081014;
}

.feature-list {
    list-style: none;
    margin: 32px 0;
}

.feature-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
}

.feature-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: #081014;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.95rem;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(255,122,24,0.08);
}

.feature-list h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--text-light);
}

.feature-list p {
    color: var(--text-body);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.005));
    padding: 28px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.03);
    transition: all 0.28s;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(2,6,23,0.75);
}

.testimonial-content {
    margin-bottom: 20px;
}

.stars {
    color: #fbbf24;
    font-size: 1.05rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--text-light);
}

.testimonial-author span {
    color: var(--muted);
    font-size: 0.85rem;
}

/* CTA Section */
.cta {
    position: relative;
    padding: 120px 0;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) contrast(0.95);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, rgba(255,122,24,0.9) 0%, rgba(255,184,107,0.9) 100%);
    mix-blend-mode: multiply;
    opacity: 0.95;
}

.cta-content {
    text-align: center;
    color: #081014;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.25rem;
    color: #081014;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1.05rem;
    color: rgba(8,16,20,0.9);
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-darker);
    color: var(--text-body);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    color: var(--text-light);
}

.footer-brand p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
}

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

.footer-links h4,
.footer-contact h4 {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

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

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.95rem;
}

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

.footer-contact p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.03);
    text-align: center;
    color: rgba(255,255,255,0.12);
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    background: transparent;
}

.page-title {
    font-size: 2.75rem;
    margin-bottom: 16px;
    color: var(--text-light);
}

.page-subtitle {
    font-size: 1.05rem;
    color: var(--text-body);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .services-grid,
    .testimonials-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stat-card {
        display: none;
    }
    
    .why-us-images .img-secondary,
    .experience-badge {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }
    
    .services-grid,
    .testimonials-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
}
