/* 
    SwiftRoute Movers - Style Sheet
    Modern, Premium, Colorful, Responsive
*/

:root {
    /* Color Palette - Modern & Energetic */
    --primary-color: #0056b3; /* Professional Blue */
    --primary-light: #3385ff;
    --secondary-color: #ff6b35; /* Energetic Orange */
    --accent-color: #00d4ff; /* Tech Cyan */
    --dark-color: #1a202c;
    --light-color: #f7fafc;
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-600: #4a5568;
    --gray-800: #2d3748;
    
    /* Typography */
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: var(--transition);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
    position: relative;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 4px;
    background: var(--white);
    border-radius: 2px;
    box-shadow: 0 6px 0 var(--white), 0 -6px 0 var(--white);
}

.logo-text span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--gray-800);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #f0f7ff, #ffffff);
}

.hero-bg-shapes .shape {
    position: absolute;
    z-index: 0;
    filter: blur(80px);
    opacity: 0.4;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-light);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    bottom: -50px;
    left: -50px;
    border-radius: 50%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(0, 86, 179, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero-content h1 span {
    color: var(--primary-color);
    position: relative;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 212, 255, 0.2);
    z-index: -1;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    width: 280px;
    height: 180px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    position: absolute;
    top: 20%;
    right: 0;
    z-index: 2;
    border-left: 8px solid var(--secondary-color);
}

.card-line {
    height: 10px;
    background: var(--gray-100);
    border-radius: 5px;
    margin-bottom: 15px;
    width: 100%;
}

.card-line.short {
    width: 60%;
}

.visual-box {
    width: 240px;
    height: 240px;
    background: var(--primary-color);
    border-radius: var(--radius);
    position: absolute;
    bottom: 10%;
    left: 0;
    transform: rotate(-10deg);
    box-shadow: var(--shadow-lg);
}

.box-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius) var(--radius) 0 0;
}

/* Sections General */
section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.subtitle {
    display: block;
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--primary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    position: relative;
}

.icon-long { background: rgba(0, 86, 179, 0.1); }
.icon-local { background: rgba(255, 107, 53, 0.1); }
.icon-packing { background: rgba(0, 212, 255, 0.1); }
.icon-commercial { background: rgba(26, 32, 44, 0.1); }

.service-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    border: 3px solid currentColor;
    border-radius: 4px;
}

.icon-long::after { color: var(--primary-color); border-style: solid dashed; }
.icon-local::after { color: var(--secondary-color); border-radius: 50%; }
.icon-packing::after { color: var(--accent-color); transform: translate(-50%, -50%) rotate(45deg); }
.icon-commercial::after { color: var(--dark-color); border-width: 5px; }

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* About Section */
.about {
    background: var(--gray-100);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
}

.about-visual {
    position: relative;
}

.about-image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border-radius: var(--radius);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.placeholder-content {
    text-align: center;
    color: var(--gray-600);
}

.placeholder-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
}

.placeholder-icon::after {
    content: '→';
    font-size: 2rem;
    color: var(--primary-color);
    line-height: 80px;
}

.about-pattern {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(var(--primary-light) 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 0;
}

.about-features {
    margin: 2rem 0;
}

.about-features li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 600;
}

.about-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Blog Section */
.blog {
    background: var(--white);
}

.blog-post {
    max-width: 900px;
    margin: 0 auto;
}

.blog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-header h1 {
    font-size: 2.8rem;
    margin-top: 1rem;
    line-height: 1.2;
}

.blog-content {
    font-size: 1.1rem;
    color: var(--gray-800);
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content h2 {
    margin: 3rem 0 1.5rem;
    font-size: 1.8rem;
    border-left: 5px solid var(--primary-color);
    padding-left: 1.5rem;
}

.blog-content ul, .blog-content ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.blog-content li {
    margin-bottom: 0.8rem;
}

.blog-content strong {
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    background: var(--dark-color);
    color: var(--white);
}

.contact h2 {
    color: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
}

.info-items {
    margin-top: 3rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-icon::after {
    content: '';
    width: 15px;
    height: 15px;
    border: 2px solid var(--accent-color);
}

.icon-phone::after { border-radius: 50%; }
.icon-email::after { border-radius: 0; }
.icon-location::after { transform: rotate(45deg); }

.info-item h4 {
    color: var(--accent-color);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    color: var(--gray-800);
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    padding: 5rem 0 0;
    background: var(--gray-100);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer h4 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.footer-links li, .footer-services li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover, .footer-services a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
}

.footer-bottom {
    border-top: 1px solid var(--gray-200);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container, .about-container, .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions, .hero-stats {
        justify-content: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Active State for JS */
.navbar.scrolled {
    padding: 0.5rem 0;
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Enhanced Blog Content Styling */
.blog-content-styled {
    line-height: 1.8;
    color: var(--gray-800);
}

.intro-text {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--secondary-color);
    padding-left: 1.5rem;
}

.section-title {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.step-title {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-title::before {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.content-card {
    background: var(--gray-100);
    padding: 2.5rem;
    border-radius: var(--radius);
    margin: 3rem 0;
    border-top: 5px solid var(--primary-color);
}

.content-card.warning {
    background: #fff5f0;
    border-top-color: var(--secondary-color);
}

.step-box {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.custom-list {
    margin: 1.5rem 0;
}

.custom-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.custom-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.check-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.check-list li {
    background: var(--white);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 1.5rem 0;
}

.tag-cloud span {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.tag-cloud.secondary span {
    background: var(--secondary-color);
}

.highlight-box {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    margin: 3rem 0;
}

.highlight-box .section-title {
    color: var(--white);
}

.highlight-box.accent {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.options-grid, .prep-grid, .rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.option-item, .prep-item, .rule-item {
    background: var(--gray-100);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.option-item strong, .prep-item strong, .rule-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.conclusion-box {
    background: #f0f7ff;
    padding: 3rem;
    border-radius: var(--radius);
    border: 2px dashed var(--primary-color);
    margin-top: 4rem;
}

.brand-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
}
