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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1a2238;
    line-height: 1.5;
    background: #fff;
}

:root {
    --primary: #FC810E;
    --primary-hover: #e5730c;
    --dark-blue: #0d1b4d;
    --medium-blue: #1e3a8a;
    --light-gray: #f4f4f4;
    --text-dark: #1a2238;
    --text-muted: #6b7280;
}

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

.primary-color {
    color: var(--primary);
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 14px auto 0;
}

.section-title-white {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title-white::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 14px auto 0;
}

.subsection-title {
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    margin: 30px 0 30px;
    color: var(--text-dark);
}

/* Header */
.header {
    background: #fff;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.phone {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 16px;
}

/* Hero */
.hero {
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
    background-color: #e8eef5;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    pointer-events: none;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Each slide has its own background image */
.hero-slide-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 0;
    transform: scale(1.05);
    transition: transform 6s ease-out;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1);
}

/* Color overlay on top of hero background image */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(252, 129, 14, 0.55) 0%, rgba(13, 27, 77, 0.45) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 100%);
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: multiply;
}

.hero-slide.active .hero-bg-overlay {
    animation: heroOverlayShift 12s ease-in-out infinite;
}

@keyframes heroOverlayShift {
    0%, 100% {
        background:
            linear-gradient(135deg, rgba(252, 129, 14, 0.55) 0%, rgba(13, 27, 77, 0.45) 100%),
            linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 100%);
    }
    50% {
        background:
            linear-gradient(135deg, rgba(252, 129, 14, 0.65) 0%, rgba(13, 27, 77, 0.55) 100%),
            linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
    }
}

/* Decorative dot pattern overlay */
.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px);
    background-size: 18px 18px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, #fff 0%, #fff 25%, rgba(255,255,255,0.9) 40%, rgba(255,255,255,0) 60%);
    z-index: 2;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 3;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Slide content animations */
.hero-slide .hero-content,
.hero-slide .hero-image {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero-slide.active .hero-image {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInRight 0.8s ease 0.5s forwards;
}

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

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

/* ===== SLIDER CONTROLS ===== */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(252, 129, 14, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.slider-arrow:hover {
    background: #FC810E;
    border-color: #FC810E;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 32px rgba(252, 129, 14, 0.4);
}

.slider-arrow:hover svg path {
    stroke: #fff !important;
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-arrow svg path {
    transition: stroke 0.3s ease;
}

/* ===== SLIDER DOTS ===== */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: rgba(252, 129, 14, 0.7);
    transform: scale(1.2);
}

.slider-dot.active {
    background: #FC810E;
    border-color: #FC810E;
    width: 36px;
    border-radius: 6px;
    box-shadow: 0 0 12px rgba(252, 129, 14, 0.6);
}

/* ===== SLIDER PROGRESS BAR ===== */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 10;
    overflow: hidden;
}

.slider-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #FC810E, #e5730c);
    width: 0%;
    transition: width 0.1s linear;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 15px;
    max-width: 420px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-circle {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--medium-blue);
    box-shadow:
        0 0 0 8px rgba(255, 255, 255, 0.95),
        0 0 0 12px rgba(252, 129, 14, 0.4),
        0 25px 70px rgba(0, 0, 0, 0.35),
        0 0 60px rgba(252, 129, 14, 0.3);
    position: relative;
}

.hero-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* How To Scrap */
.how-to-scrap {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.how-to-scrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/scraptwo/assets/images/hero-bg-scrap.jpg');
    background-size: cover;
    opacity: 0.08;
    z-index: 0;
}

.how-to-scrap .container {
    position: relative;
    z-index: 1;
}

.scrap-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.scrap-card-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.scrap-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-icon {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.scrap-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
}

.scrap-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

/* What We Buy */
.what-we-buy {
    padding: 80px 0;
    background: #fff;
}

.metal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.metal-card {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.metal-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.metal-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 27, 77, 0.75);
    color: #fff;
    text-align: center;
    padding: 12px 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
}

/* How To Scrap Blue */
.how-to-scrap-blue {
    padding: 80px 0;
    background: var(--medium-blue);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.how-to-scrap-blue::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 40px;
    background: #fff;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.how-to-scrap-blue::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 40px;
    background: #fff;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.scrap-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.service-item h3 {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-top: 20px;
}

.service-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.service-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #fff;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

.g-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 50%;
    font-weight: 700;
    color: #4285F4;
    font-size: 18px;
}

.g-logo-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    font-weight: 700;
    color: #4285F4;
    font-size: 14px;
}

.stars {
    display: inline-flex;
    gap: 2px;
}

.stars-small {
    display: inline-flex;
    gap: 1px;
    font-size: 12px;
}

.star {
    color: #ddd;
    font-size: 18px;
}

.star.filled {
    color: #ffc107;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: #ea4335;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.author-info strong {
    display: block;
    font-size: 14px;
}

.author-info .stars-small {
    margin-top: 2px;
}

.testimonial-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.google-attribution {
    text-align: center;
    margin-top: 30px;
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* About */
.about {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #e8eef5 100%);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.trust-marks {
    margin-top: 20px;
}

.trust-marks strong {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.badges {
    display: flex;
    gap: 10px;
}

.badge {
    background: #f4d35e;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #1a2238;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin-left: auto;
}

/* Contact */
.contact-section {
    padding: 0;
    background: var(--medium-blue);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(180deg, #e8eef5 0%, var(--medium-blue) 100%);
}

.contact-card {
    background: #fff;
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
    transform: translateY(40px);
    margin-bottom: 60px;
}

.contact-card h2 {
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.3;
}

.contact-card > p {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 24px;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    margin-bottom: 16px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

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

.contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: #fff;
    padding: 60px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    height: 50px;
}

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 700;
}

.footer-col a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-col p {
    color: #cbd5e0;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.email-link {
    color: #cbd5e0 !important;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #cbd5e0;
}

.footer-bottom .orange {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-inner,
    .about-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-img-circle {
        width: 300px;
        height: 300px;
    }
    
    /* Slider responsive */
    .hero-slide-bg {
        width: 100%;
        opacity: 0.5;
    }
    
    .hero-bg-overlay {
        width: 100%;
    }
    
    .hero-bg-pattern {
        width: 100%;
    }
    
    .hero-overlay {
        width: 100%;
        background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.5) 100%);
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .scrap-cards,
    .metal-grid,
    .scrap-services,
    .testimonial-cards {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .nav {
        display: none;
    }
    
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .header-right .phone {
        display: none;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
}
