@import "https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP&display=swap";

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

body {
font-family:'IBM Plex Sans JP';
overflow-x:hidden
}

.fact-image {
width:20px;
height:20px
}

.navbar {
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 4px rgba(0,0,0,0.1);
height:88px;
background-color:#fff;
display:flex;
justify-content:space-between;
align-items:center;
padding:1rem 3%;
width:100%
}

.logo img {
height:50px;
width:280px;
object-fit:contain
}

dl,ol,ul {
margin-bottom:0;
padding:0
}

.nav-links {
font-family:'IBM Plex Sans JP';
display:flex;
list-style:none
}

.nav-links li {
margin:0 1.5rem;
position:relative
}

.nav-links a {
font-size:18px;
font-weight:700;
color:#be1800;
text-decoration:none;
position:relative
}

.nav-links a::after {
content:'';
position:absolute;
width:0;
height:3px;
bottom:-5px;
left:0;
background-color:#0056b3;
transition:width .3s ease-in-out
}

.nav-links a:hover::after {
width:100%
}

.services-dropdown {
border-radius:15px;
margin-top:6px;
width:400px;
display:none;
position:absolute;
background-color:#fff;
min-width:160px;
box-shadow:0 8px 16px 0 rgba(0,0,0,0.2);
z-index:1
}

.core-serv {
color:#000;
font-size:20px;
font-weight:700;
margin:8px 0 0 15px
}

.services-dropdown a {
font-size:16px;
color:#be1800;
padding:12px 16px;
text-decoration:none;
display:block
}

.services-dropdown a img {
margin-right:10px;
vertical-align:middle
}

.services-dropdown a:hover {
background-color:#e3ebf198
}

.nav-links li:hover .services-dropdown {
display:block
}

.cta-button {
display:inline-flex;
align-items:center;
justify-content:center;
text-decoration:none;
background-color:#005081;
font-size:18px;
height:50px;
width:130px;
color:#fff;
border:none;
padding:10px 20px;
border-radius:5px;
cursor:pointer;
transition:background-color .3s
}

.cta-button:hover {
background-color:#be1800;
color:#fff;
text-decoration:none
}

.hamburger {
display:none;
cursor:pointer;
width:30px;
height:30px;
position:relative;
z-index:1000
}

.hamburger span {
display:block;
position:absolute;
height:3px;
width:100%;
background:#005081;
border-radius:3px;
opacity:1;
left:0;
transform:rotate(0deg);
transition:.25s ease-in-out
}

.hamburger span:nth-child(1) {
top:0
}

.hamburger span:nth-child(2) {
top:10px
}

.hamburger span:nth-child(3) {
top:20px
}

.hamburger.open span:nth-child(1) {
top:10px;
transform:rotate(45deg)
}

.hamburger.open span:nth-child(2) {
opacity:0
}

.hamburger.open span:nth-child(3) {
top:10px;
transform:rotate(-45deg)
}

.mobile-nav {
display:none
}

@media screen and (min-width: 1024px) and (max-width: 1366px) {
.navbar {
padding:1rem 4%;
height:80px
}

.logo img {
height:40px;
width:220px
}

.nav-links li {
margin:0 1.2rem
}

.nav-links a {
font-size:17px
}

.services-dropdown {
width:380px
}

.cta-button {
font-size:17px;
height:45px;
width:120px
}
}

@media screen and (min-width: 820px) and (max-width: 1023px) {
.navbar {
padding:1rem 2%;
height:75px
}

.logo img {
height:35px;
width:200px
}

.nav-links li {
margin:0 .8rem
}

.nav-links a {
font-size:15px
}

.services-dropdown {
width:320px
}

.services-dropdown a {
font-size:15px;
padding:10px 14px
}

.core-serv {
font-size:18px
}

.cta-button {
font-size:16px;
height:42px;
width:110px;
padding:8px 16px
}
}

@media screen and (max-width: 819px) {
.navbar {
height:70px;
padding:1rem 4%
}

.nav-links,.navbar .cta-button {
display:none
}

.logo img {
height:30px;
width:160px
}

.hamburger {
display:block
}

.mobile-nav {
overflow-y:scroll;
display:block;
position:fixed;
top:0;
left:-100%;
width:80%;
height:100vh;
background-color:#f8f9fa;
display:flex;
flex-direction:column;
align-items:center;
padding-top:50px;
transition:left .3s ease-in-out;
z-index:999
}

.mobile-nav.open {
left:0
}

.mobile-nav .logo {
margin-bottom:30px
}

.mobile-nav .nav-links {
margin-top:40px;
display:flex;
flex-direction:column;
align-items:center;
width:70%
}

.mobile-nav .nav-links li {
margin:15px 0;
width:100%;
text-align:center
}

.mobile-nav .services-dropdown {
position:static;
width:100%;
box-shadow:none;
display:none
}

.mobile-nav .nav-links li:hover .services-dropdown {
display:block
}

.mobile-nav .services-dropdown a {
padding:15px;
text-align:left
}

.mobile-nav .cta-button {
display:block;
margin-top:20px;
text-align:center;
padding-top:13px
}

.mobile-nav .services-dropdown a img {
max-width:20px;
height:auto
}
}

@media screen and (max-width: 480px) {
.navbar {
padding:1rem 3%
}

.logo img {
height:25px;
width:140px
}

.mobile-nav {
width:85%
}

.mobile-nav .services-dropdown a {
font-size:14px;
padding:12px
}

.core-serv {
font-size:18px
}
}

/* ---------------------------------------------- */

:root {
    --primary-color: #be1800; 
    --secondary-color: #005081; 
    --accent-color: #f0f8ff;
    --text-color: #666;
    --light-bg: #f9f9f9e7;
    --white: #ffffff;
    --shadow: 0 8px 18px rgba(0, 0, 0, 0.229);
    --hover-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --primary-light: rgba(190, 24, 0, 0.1);
    --error-color: #e74c3c;
    --success-color: #27ae60;
    --card-border: 3px solid var(--primary-color);
    --light-border: 1px solid #eaeaea;
    --dark-bg: #2c3e50;
    --form-bg: rgba(255, 255, 255, 0.95);
}

section {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e8f4fe 100%);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow-x: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/api/placeholder/1400/900') center/cover no-repeat fixed;
    opacity: 0.05;
    z-index: -1;
}

/* Layout Container */
.recycling-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 20px;
}

.header .logo {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .logo i {
    margin-right: 12px;
    font-size: 28px;
}

.header p {
    font-size: 16px;
    color: var(--secondary-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Main Content Area */
.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* Contact Info Panel */
.contact-panel {
    flex: 1;
    min-width: 300px;
    background: var(--form-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border-top: var(--card-border);
}

.contact-panel:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.contact-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 25px 30px;
    position: relative;
}

.contact-header h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-header p {
    opacity: 0.9;
    font-size: 15px;
}

.contact-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 30px;
    background: var(--primary-color);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.contact-body {
    padding: 40px 30px 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    flex: 0 0 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-icon i {
    color: var(--primary-color);
    font-size: 18px;
}

.contact-info {
    flex: 1;
    
}

.contact-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info p, .contact-info a {
    font-size: 15px;
    color: var(--text-color);
    word-break: break-word;
}

.contact-info a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

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

.contact-info a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.contact-info a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.social-link i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Form Panel */
.form-panel {
    flex: 2;
    min-width: 300px;
    background: var(--form-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: var(--card-border);
}

.form-panel:hover {
    box-shadow: var(--hover-shadow);
}

.form-header {
    padding: 25px 30px;
    border-bottom: var(--light-border);
    position: relative;
}

.form-header h2 {
    font-size: 22px;
    color: var(--dark-bg);
    display: flex;
    align-items: center;
}

.form-header h2 i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 24px;
}

/* Progress Bar */
.progress-container {
    padding: 20px 30px;
    background: var(--light-bg);
}

.progress-bar {
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    width: 0;
    transition: width 0.4s ease;
    border-radius: 10px;
}

.step-indicators {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.step-indicators::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e0e0e0;
    z-index: 0;
}

.step {
    z-index: 1;
    position: relative;
    width: 35px;
    height: 35px;
    background-color: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #999;
    transition: var(--transition);
}

.step.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 0 0 5px var(--primary-light);
}

.step-label {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    color: var(--text-color);
    white-space: nowrap;
    font-weight: 500;
}

/* Form Body */
.form-body {
    padding: 30px;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.5s;
}

.form-step.active {
    display: block;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-bg);
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 15px;
    transition: var(--transition);
    background-color: var(--white);
    color: var(--dark-bg);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group input:focus + i,
.form-group select:focus + i,
.form-group textarea:focus + i {
    color: var(--secondary-color);
}

/* Button Styles */
.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn {
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    gap: 10px;
}

.btn i {
    margin-right: 8px;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(190, 24, 0, 0.2);
}

.btn-primary:hover {
    background: #a51400;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(190, 24, 0, 0.3);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 80, 129, 0.2);
}

.btn-secondary:hover {
    background: #004670;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 80, 129, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border: 1px solid #e0e0e0;
}

.btn-outline:hover {
    background: var(--light-bg);
    border-color: #d0d0d0;
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

/* Loading & Success States */
.loading {
    display: none;
    text-align: center;
    padding: 40px 0;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--accent-color);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

.success-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.6s;
}

.success-icon {
    font-size: 70px;
    color: var(--success-color);
    margin-bottom: 20px;
}

.success-title {
    font-size: 26px;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.success-text {
    color: var(--text-color);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Tooltip Styles */
.tooltip {
    position: relative;
    display: inline-block;
    margin-left: 8px;
    cursor: pointer;
}

.tooltip i {
    color: var(--secondary-color);
    font-size: 14px;
}

.tooltip .tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: var(--dark-bg);
    color: var(--white);
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: var(--transition);
    font-size: 13px;
    font-weight: normal;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tooltip .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--dark-bg) transparent transparent transparent;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

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

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .recycling-container {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }

    .step-label {
        display: none;
    }

    .form-header h2, .contact-header h2 {
        font-size: 20px;
    }

    .form-body, .contact-body {
        padding: 20px;
    }
}