/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 80px;
}

/* Header and Navigation */
header {
    background-color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    width: 100%;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo::before {
    content: "";
    width: 24px;
    height: 24px;
    background-color: #FF6B2C;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1 L22 7 L22 17 L12 23 L2 17 L2 7 L12 1z'/%3E%3C/svg%3E") no-repeat 50% 50%;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1 L22 7 L22 17 L12 23 L2 17 L2 7 L12 1z'/%3E%3C/svg%3E") no-repeat 50% 50%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    padding: 8px 0;
}

.nav-links a:hover {
    color: #FF6B2C;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/home page.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 800px;
}

/* CTA Buttons */
.cta-button {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    background-color: #FF6B2C;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: #E85A1F;
    transform: translateY(-2px);
}

.service-cta {
    display: inline-block;
    padding: 12px 24px;
    background: #FF5C28;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    align-self: flex-start;
}

.service-cta:hover {
    background: #E85A1F;
    transform: translateY(-2px);
}

.feature-cta {
    display: inline-block;
    padding: 14px 28px;
    background: #FF6B2C;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-cta:hover {
    background: #E85A1F;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 6rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 0;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: left;
    transition: transform 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
}

.service-image.office-relocation {
    background-image: url('images/office relocation.jpg');
}

.service-image.packing {
    background-image: url('images/packing.jpg');
}

.service-image.delivery {
    background-image: url('images/delivery.jpg');
}

.service-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card h3 {
    margin-bottom: 12px;
    color: #000;
    font-size: 20px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    margin-bottom: 24px;
    font-size: 16px;
    flex-grow: 1;
}

.read-more {
    display: inline-block;
    padding: 12px 24px;
    background: #FF6B2C;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.read-more:hover {
    background: #E85A1F;
}

/* Features Section */
.features {
    padding: 6rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.feature:nth-child(even) {
    direction: rtl;
}

.feature:nth-child(even) .feature-content {
    direction: ltr;
}

.feature-image {
    width: 100%;
    height: 400px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
}

.feature-image.professional {
    background-image: url('images/professional mover.jpg');
    background-position: center 20%;
}

.feature-image.reliable {
    background-image: url('images/reliable service.jpg');
}

.feature-content {
    text-align: left;
    padding: 24px;
}

.feature h3 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #000;
    font-weight: 600;
    line-height: 1.1;
}

.feature p {
    font-size: 20px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.5;
}

.feature .read-more {
    display: inline-block;
    padding: 12px 24px;
    background: #FF6B2C;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.feature .read-more:hover {
    background: #E85A1F;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 1rem;
    text-align: center;
    background-color: white;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 600;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.testimonial p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.author {
    margin-top: 1.5rem;
}

.author strong {
    font-size: 1.2rem;
    color: #2c3e50;
}

.author span {
    color: #666;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    background-color: #f8f9fa;
    padding: 6rem 1rem;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 600;
}

form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

input, textarea {
    padding: 1.2rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    border-color: #FF6B2C;
    outline: none;
}

textarea {
    height: 200px;
    resize: vertical;
}

form button {
    padding: 1.2rem;
    background-color: #FF6B2C;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

form button:hover {
    background-color: #E85A1F;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: #111;
    color: #888;
    padding: 24px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer p {
    font-size: 14px;
    margin: 0;
}

.social-links {
    margin: 0;
    display: flex;
    gap: 24px;
}

.social-links a {
    color: #888;
    font-size: 20px;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: #FF6B2C;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }

    .services {
        grid-template-columns: 1fr;
        padding: 4rem 1rem;
    }

    .service-card {
        padding: 2rem;
    }

    .feature {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature:nth-child(even) {
        direction: ltr;
    }

    .feature h3 {
        font-size: 36px;
    }

    .feature p {
        font-size: 18px;
    }

    .feature-image {
        height: 300px;
    }

    .testimonial {
        padding: 2rem;
    }

    .testimonial p {
        font-size: 1.1rem;
    }

    footer {
        padding: 24px;
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
} 