/* Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background-color: #f7fafc;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Color Variables - Canadian Theme (Red & White) */
:root {
    /* Canadian Flag Colors */
    --canada-red: #C8102E;
    --canada-red-light: #E63946;
    --canada-red-dark: #A01D2E;
    --canada-white: #FFFFFF;
    --canada-red-accent: #FF0000;
    
    /* Primary colors using Canadian theme */
    --primary-blue: #C8102E;
    --primary-blue-light: #E63946;
    --primary-blue-dark: #A01D2E;
    --secondary-blue: #8B1538;
    --accent-cyan: #C8102E;
    --accent-cyan-light: #E63946;
    --cool-teal: #A01D2E;
    --cool-indigo: #8B1538;
    
    --bg-cool: #FFF5F5;
    --bg-cool-light: #FFEBEB;
    --bg-white: #ffffff;
    --bg-dark: #1a202c;
    --bg-dark-light: #2d3748;
    
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;
    --text-white: #ffffff;
    
    --border-light: #FFE5E5;
    --border-cool: #FFD6D6;
    
    --shadow-sm: 0 2px 4px rgba(200, 16, 46, 0.1);
    --shadow-md: 0 4px 12px rgba(200, 16, 46, 0.15);
    --shadow-lg: 0 8px 24px rgba(200, 16, 46, 0.2);
    --shadow-xl: 0 12px 40px rgba(200, 16, 46, 0.25);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--canada-red), var(--canada-red-light));
    color: var(--text-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
    position: relative;
}

.logo-icon::after {
    content: '🍁';
    position: absolute;
    top: -4px;
    right: -4px;
    font-size: 12px;
    opacity: 0.8;
}

.logo-text {
    font-weight: 600;
}

.main-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--canada-red);
}

.nav-link.active {
    color: var(--canada-red);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--canada-red);
}

.nav-cta {
    background: var(--canada-red);
    color: var(--text-white);
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--canada-red-dark);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #8B1538 0%, #C8102E 50%, #E63946 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="120" height="120" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="maple" width="120" height="120" patternUnits="userSpaceOnUse"><path d="M60,20 C50,20 45,30 45,40 C45,50 50,60 60,70 C70,60 75,50 75,40 C75,30 70,20 60,20 Z" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1.5"/><circle cx="60" cy="40" r="3" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23maple)"/></svg>');
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 32, 44, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--text-white);
    max-width: 800px;
}

.hero-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 16px;
    position: relative;
    padding-left: 24px;
}

.hero-label::before {
    content: '🍁';
    position: absolute;
    left: 0;
    font-size: 16px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-white);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--canada-red);
    color: var(--text-white);
}

.btn-primary:hover {
    background: var(--canada-red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--canada-red);
    border: 2px solid var(--canada-red);
}

.btn-outline:hover {
    background: var(--canada-red);
    color: var(--text-white);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--canada-red);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    padding-left: 20px;
}

.section-label::before {
    content: '🍁';
    position: absolute;
    left: 0;
    font-size: 12px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Services */
.featured-services {
    padding: 100px 0;
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--canada-red);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--canada-red), var(--canada-red-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.2);
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-description {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: var(--canada-red);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: var(--canada-red-dark);
    gap: 12px;
}

/* About Preview */
.about-preview {
    padding: 100px 0;
    background: var(--bg-cool);
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-preview-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--canada-red), var(--canada-red-light));
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
}

.image-placeholder.large {
    height: 500px;
}

.about-description {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Latest News */
.latest-news {
    padding: 100px 0;
    background: var(--bg-white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.news-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.news-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.news-image .image-placeholder {
    height: 100%;
    border-radius: 0;
}

.news-content {
    padding: 32px;
}

.news-date {
    font-size: 14px;
    color: var(--canada-red);
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.news-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-excerpt {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-link {
    color: var(--canada-red);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.news-link:hover {
    color: var(--canada-red-dark);
    gap: 12px;
}

.section-footer {
    text-align: center;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--canada-red-dark), var(--canada-red));
}

.cta-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 32, 44, 0.3);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-white);
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

/* Page Header */
.page-header {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    color: var(--text-white);
    overflow: hidden;
}

.page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--canada-red-dark), var(--canada-red));
}

.page-header-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="120" height="120" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="maple-header" width="120" height="120" patternUnits="userSpaceOnUse"><path d="M60,20 C50,20 45,30 45,40 C45,50 50,60 60,70 C70,60 75,50 75,40 C75,30 70,20 60,20 Z" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1.5"/><circle cx="60" cy="40" r="3" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23maple-header)"/></svg>');
    opacity: 0.4;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 32, 44, 0.4);
}

.page-title {
    position: relative;
    z-index: 1;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-subtitle {
    position: relative;
    z-index: 1;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* Company Story */
.company-story {
    padding: 100px 0;
    background: var(--bg-white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.story-description {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
    background: var(--bg-cool);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
}

.mv-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    text-align: center;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--canada-red), var(--canada-red-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.25);
}

.mv-icon svg {
    width: 40px;
    height: 40px;
}

.mv-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.mv-description {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Values */
.values {
    padding: 100px 0;
    background: var(--bg-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 32px;
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--canada-red), var(--canada-red-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.2);
}

.value-icon svg {
    width: 32px;
    height: 32px;
}

.value-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.value-description {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Team */
.team {
    padding: 100px 0;
    background: var(--bg-cool);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.team-member {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.member-photo {
    width: 160px;
    height: 160px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
}

.member-photo .image-placeholder {
    height: 100%;
    border-radius: 50%;
}

.member-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.member-role {
    font-size: 16px;
    color: var(--canada-red);
    font-weight: 600;
    margin-bottom: 12px;
}

.member-bio {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Company Culture */
.company-culture {
    padding: 100px 0;
    background: var(--bg-white);
}

.culture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.culture-description {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 24px;
}

.culture-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.culture-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-weight: 500;
}

.culture-feature svg {
    width: 20px;
    height: 20px;
    color: var(--canada-red);
}

/* Services Detail */
.services-detail {
    padding: 100px 0;
    background: var(--bg-white);
}

.service-detail-item {
    margin-bottom: 120px;
}

.service-detail-item:last-child {
    margin-bottom: 0;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.service-detail-item.reverse .service-detail-content {
    direction: rtl;
}

.service-detail-item.reverse .service-detail-text,
.service-detail-item.reverse .service-detail-image {
    direction: ltr;
}

.service-badge {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--canada-red), var(--canada-red-light));
    color: var(--text-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.service-detail-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-detail-description {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 32px;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-medium);
    font-size: 16px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--canada-red);
    font-weight: 700;
    font-size: 18px;
}

/* Case Studies */
.case-studies {
    padding: 100px 0;
    background: var(--bg-cool);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.case-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.case-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.case-image .image-placeholder {
    height: 100%;
    border-radius: 0;
}

.case-content {
    padding: 32px;
}

.case-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--canada-red);
    background: rgba(200, 16, 46, 0.1);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.case-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.case-description {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 24px;
}

.case-results {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.case-result {
    text-align: center;
}

.result-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--canada-red);
    margin-bottom: 4px;
}

.result-label {
    font-size: 14px;
    color: var(--text-medium);
}

/* Products */
.products {
    padding: 100px 0;
    background: var(--bg-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.product-image .image-placeholder {
    height: 100%;
    border-radius: 0;
}

.product-content {
    padding: 32px;
}

.product-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--canada-red);
    background: rgba(200, 16, 46, 0.1);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.product-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.product-description {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    margin-bottom: 24px;
}

.product-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-medium);
    font-size: 14px;
}

.product-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--canada-red);
    font-weight: 700;
    font-size: 18px;
}

/* Product Benefits */
.product-benefits {
    padding: 100px 0;
    background: var(--bg-cool);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.benefit-item {
    text-align: center;
    padding: 32px;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--canada-red), var(--canada-red-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.2);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
}

.benefit-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.benefit-description {
    color: var(--text-medium);
    line-height: 1.6;
}

/* News List */
.news-list {
    padding: 100px 0;
    background: var(--bg-white);
}

.news-articles {
    max-width: 900px;
    margin: 0 auto;
}

.news-article {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    padding: 48px 0;
    border-bottom: 1px solid var(--border-light);
}

.news-article:last-child {
    border-bottom: none;
}

.article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.article-image .image-placeholder {
    height: 100%;
}

.article-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.article-date {
    font-size: 14px;
    color: var(--canada-red);
    font-weight: 600;
}

.article-category {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-medium);
    background: var(--bg-cool);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
}

.article-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.article-excerpt {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
}

.article-link {
    color: var(--canada-red);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.article-link:hover {
    color: var(--canada-red-dark);
    gap: 12px;
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--canada-red-dark), var(--canada-red));
    text-align: center;
    color: var(--text-white);
}

.newsletter-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.newsletter-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    background: var(--bg-white);
    color: var(--text-dark);
}

.newsletter-input:focus {
    outline: 2px solid var(--accent-cyan);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-details {
    margin-top: 48px;
}

.contact-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--canada-red), var(--canada-red-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.2);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-text {
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-text a {
    color: var(--canada-red);
}

.contact-text a:hover {
    color: var(--canada-red-dark);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-cool);
    padding: 48px;
    border-radius: var(--radius-lg);
}

.form-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-family: inherit;
    background: var(--bg-white);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--canada-red);
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-container {
    width: 100%;
    height: 500px;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-cool-light), var(--bg-cool));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--text-medium);
}

.map-placeholder svg {
    width: 64px;
    height: 64px;
    color: var(--canada-red);
    margin-bottom: 16px;
}

.map-note {
    font-size: 14px;
    margin-top: 8px;
    color: var(--text-light);
}

/* Footer */
.site-footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--canada-red);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-contact {
    list-style: none;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--text-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 968px) {
    .main-nav {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 18px;
    }

    .section-title {
        font-size: 36px;
    }

    .about-preview-content,
    .story-content,
    .culture-content,
    .service-detail-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .service-detail-item.reverse .service-detail-content {
        direction: ltr;
    }

    .news-article {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .page-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-title {
        font-size: 36px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }
}




