/* Chop Chop Logistics Ltd - Main Stylesheet */
:root {
    --slate: #546a7b;
    --orange: #ff8c42;
    --peach: #f9b16e;
    --accent: #ff8c42;
    --dark: #2c3e50;
    --light: #f8fafc;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--orange) 0%, var(--peach) 100%);
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
}

header {
    background: var(--slate);
    color: white;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-box {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 700 !important;
}

.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(84, 106, 123, 0.9)), url('https://chopchoplogistics.co.uk/assets/images/hero.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 10%;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.btn {
    background: var(--gradient);
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

.stats {
    background: var(--white);
    padding: 30px 10%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stat-item { text-align: center; }
.stat-item h4 { margin: 0; color: var(--slate); font-size: 1.5rem; }
.stat-item p { margin: 0; font-size: 0.9rem; color: #666; }

.section-title {
    text-align: center;
    padding: 60px 10% 20px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--slate);
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 10% 80px;
}

.card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s;
    border: 1px solid #edf2f7;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.card i {
    color: var(--orange);
    margin-bottom: 20px;
}

.card h3 {
    margin-top: 0;
    color: var(--slate);
    font-size: 1.5rem;
}

.card ul {
    padding-left: 20px;
    font-size: 0.95rem;
}

.storage-banner {
    background: var(--slate);
    color: white;
    padding: 80px 10%;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.storage-text { flex: 1; min-width: 300px; }
.storage-text h2 { font-size: 2.5rem; margin-top: 0; }

.contact-section {
    padding: 100px 10%;
    background: #f1f5f9;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
}

.contact-info {
    background: var(--slate);
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 { font-size: 2rem; margin-bottom: 30px; }

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item.phone-highlight {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 10px;
    color: var(--peach);
}

form {
    padding: 60px;
    text-align: left;
}

.form-grid {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 20px;
}

.full-width { grid-column: span 2; }

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--slate);
}

input, select, textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    font-size: 1rem;
    transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--orange);
}

.success-message {
    color:green;
    font-weight:bold;
}

.terms-section {
    padding: 60px 10%;
    background: var(--white);
}

.terms-accordion {
    max-width: 900px;
    margin: 0 auto;
}

details {
    background: var(--light);
    padding: 15px 25px;
    border-radius: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

details:hover {
    background: #edf2f7;
}

summary {
    font-weight: 700;
    color: var(--slate);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::-webkit-details-marker { display: none; }

details[open] {
    background: var(--white);
    border: 1px solid #e2e8f0;
}

.terms-content {
    padding-top: 15px;
    font-size: 0.9rem;
    color: #4a5568;
}

.terms-content h4 { margin-bottom: 5px; color: var(--dark); }

footer {
    background: #1a202c;
    color: white;
    text-align: center;
    padding: 40px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .contact-container { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .full-width { grid-column: span 1; }
    .nav-links { display: none; }
    .hero { padding: 80px 5%; }
    .logo-area {width:100%; display:block; text-align:center;}
    .contact-info {padding:25px}
    form {padding:25px;}
}
