/* ═══════════════════════════════════════════════════
   RIGHT WAY BRANDING - GLOBAL STYLES
   Restored 2026-07-18
   ═══════════════════════════════════════════════════ */

:root {
    --red: #DC2626;
    --red-dark: #991B1B;
    --red-light: #EF4444;
    --gold: #F59E0B;
    --gold-light: #FCD34D;
    --bg-deep: #0a0a0a;
    --bg-card: #1a1a1a;
    --bg-surface: #2d2d2d;
    --text-primary: #ffffff;
    --text-muted: #888888;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

h1 { font-size: clamp(36px, 6vw, 68px); }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: clamp(18px, 2vw, 24px); }

p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 80px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 56px;
}

nav ul li a {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

nav ul li a:hover {
    color: var(--red);
    text-decoration: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 15px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(220, 38, 38, 0.5);
    color: #fff;
    text-decoration: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(245, 158, 11, 0.5);
    color: #000;
    text-decoration: none;
}

.btn-white {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    text-decoration: none;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 17px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: var(--bg-deep);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

.hero-slide-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.4);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--red-light);
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-badge.gold {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.4);
    color: var(--gold-light);
}

.hero-slide h1 {
    background: linear-gradient(135deg, var(--red) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.hero-slide p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 13px;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-trust svg {
    color: var(--red);
    width: 16px;
    height: 16px;
}

/* Services Section */
.services-section {
    padding: 100px 20px;
    background: var(--bg-deep);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--red);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.service-card h3 {
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-card .price {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 16px;
}

.service-card ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.service-card ul li svg {
    color: var(--red);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 20px;
    background: var(--bg-card);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.portfolio-item {
    background: var(--bg-deep);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.portfolio-info {
    padding: 32px;
}

.portfolio-info h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
}

.portfolio-info p {
    margin-bottom: 16px;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 20px;
    background: var(--bg-deep);
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.8;
}

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

.testimonial-author strong {
    color: var(--text-primary);
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 32px;
}

/* Footer */
footer {
    background: var(--bg-card);
    padding: 80px 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-brand h3 {
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 18px;
}

.footer-social a:hover {
    background: var(--red);
    color: #fff;
}

.footer-links h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 16px;
}

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

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

.footer-links ul li a {
    color: var(--text-muted);
}

.footer-links ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    nav {
        padding: 16px 20px;
    }
    
    nav ul {
        display: none;
    }
    
    .hero-carousel {
        height: auto;
        min-height: 100vh;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .services-grid,
    .portfolio-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

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

/* Tablet Responsive */
@media (max-width: 1200px) {
    nav {
        padding: 24px 40px;
    }
    
    nav ul {
        gap: 36px;
    }
    
    nav ul li a {
        font-size: 14px;
        letter-spacing: 0.8px;
    }
    
    .container {
        max-width: 960px;
    }
    
    .services-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    nav {
        padding: 20px 30px;
    }
    
    nav ul {
        gap: 24px;
    }
    
    nav ul li a {
        font-size: 13px;
        letter-spacing: 0.5px;
    }
    
    .container {
        max-width: 768px;
    }
    
    h1 {
        font-size: clamp(28px, 5vw, 48px);
    }
    
    h2 {
        font-size: clamp(24px, 4vw, 36px);
    }
    
    .hero-carousel {
        height: 80vh;
        min-height: 500px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    nav {
        padding: 16px 20px;
    }
    
    nav ul {
        display: none;
    }
    
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-carousel {
        height: auto;
        min-height: 100vh;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .services-grid,
    .portfolio-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .section-header {
        text-align: center;
    }
    
    .card,
    .service-card,
    .portfolio-item,
    .testimonial-card {
        text-align: center;
    }
    
    .card > *,
    .service-card > *,
    .portfolio-item > * {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 12px 16px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 22px;
    }
    
    .hero-slide-content {
        padding: 20px 16px;
    }
    
    .service-card,
    .testimonial-card {
        padding: 24px;
    }
}

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

/* Utility Classes */
.text-red { color: var(--red); }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 32px; }
