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

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header and Navigation */
.main-nav {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

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

.logo a {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    line-height: 1.2;
    text-transform: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #333;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    background: linear-gradient(to right, rgba(173, 216, 230, 0.3), rgba(255, 255, 255, 0.5)),
                url('homepage_header.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-text {
    font-size: 14px;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto;
    opacity: 0.95;
    font-weight: 600;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.4;
}

.about-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.best-calgary-logo {
    margin-top: 40px;
}

.best-calgary-badge {
    width: 120px;
    height: auto;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

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

.service-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.service-image.custom-furniture {
    background-image: url('custom_furniture.png');
}

.service-image.furniture-repair {
    background-image: url('repair.jpg');
}

.service-image.reupholstery {
    background-image: url('reupholstery.png');
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #333;
    letter-spacing: 1px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background-color: #fff;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.client-item {
    text-align: center;
}

.client-image {
    width: 250px;
    height: 200px;
    margin: 0 auto 20px;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.client-logo {
    width: 250px;
    height: 200px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pza-logo {
    width: 120px;
    height: 120px;
    border: 3px solid #333;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #333;
}

.pza-logo span {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
}

.client-item p {
    font-size: 14px;
    color: #666;
}

.clients-grid-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.client-item-wide {
    text-align: center;
}

.client-item-wide .client-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
}

.client-item-wide p {
    font-size: 14px;
    color: #666;
}

/* Commercial Section */
.commercial-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.commercial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.commercial-image img {
    width: 100%;
    border-radius: 10px;
}

.commercial-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #333;
}

.commercial-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.portfolio-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.instagram-link {
    display: flex;
    justify-content: center;
}

.instagram-link svg {
    transition: transform 0.3s;
}

.instagram-link svg:hover {
    transform: scale(1.1);
}

/* Location Section */
.location-section {
    background-color: #fff;
}

.location-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    text-align: center;
}

.location-header h2 {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 300;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr;
}

.map-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.office-info {
    padding: 60px 0;
    background-color: #fff;
}

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

.office-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.office-image {
    width: 100%;
}

.office-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.office-details h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #333;
}

.office-details p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.office-details .address {
    color: #666;
    text-decoration: underline;
}

.office-details a {
    color: #667eea;
}

.office-details a:hover {
    text-decoration: underline;
}

.hours {
    color: #666;
    font-weight: 500;
}

.best-calgary-feature {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.best-calgary-feature p {
    color: #666;
    margin-bottom: 10px;
}

.best-calgary-feature a {
    color: #667eea;
    word-break: break-all;
    font-size: 13px;
}

.quote-note {
    font-size: 13px;
    font-style: italic;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-content p {
    font-size: 14px;
    color: #bbb;
}

/* Services Page Specific */
.services-header {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('services_header.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
}

.services-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 300;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.services-intro {
    padding: 60px 0;
    background-color: #fff;
}

.services-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-intro-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-offered {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.services-offered h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #333;
}

.services-list {
    list-style: none;
    margin-bottom: 40px;
}

.services-list li {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.services-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
}

/* Contact Page Specific */
.contact-hero {
    position: relative;
    height: 250px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('contact_header.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-overlay {
    text-align: center;
}

.contact-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.contact-info-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-details h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.call-text {
    font-size: 13px;
    color: #666;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item label {
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.contact-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.contact-item a {
    color: #667eea;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.get-in-touch {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.get-in-touch h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.get-in-touch p {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.quote-instructions {
    font-style: italic;
}

.project-note {
    font-size: 12px;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 48px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .commercial-content {
        grid-template-columns: 1fr;
    }
    
    .office-info .container {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
}