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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Global image styles for better visibility and animation */
img {
    max-width: 100%;
    height: auto;
    display: block;
    opacity: 1;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

img[loading="lazy"] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

img.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Page loaded state */
.page-loaded img {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure images are visible when they come into view */
img[loading="lazy"].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animation classes for smooth transitions */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure smooth animations for all elements */
.service-item, .service-card, .trade-item, .stat-item, .contact-info-item, .scrap-type, .insurance-type {
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

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

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: #007bff;
    color: #fff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hidden checkbox to drive mobile nav without JS */
.nav-toggle {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/welcome_to_newyeargroup_constructions.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    position: relative;
}

.hero-content {
    max-width: 600px;
    padding-left: 50px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #007bff;
    color: #fff;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #333;
}

/* Contact Info Bar */
.contact-info-bar {
    background: #e3f2fd;
    padding: 15px 0;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-item span {
    font-weight: 500;
    color: #333;
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.welcome-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.welcome-text h3 {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 20px;
    border-bottom: 3px solid #007bff;
    padding-bottom: 10px;
    display: inline-block;
}

.welcome-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #666;
}

.call-us {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.call-label {
    color: #666;
    font-size: 0.9rem;
}

.phone-number {
    font-size: 1.8rem;
    color: #333;
    font-weight: 700;
    margin-top: 5px;
}

.welcome-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Consultation Section */
.consultation-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/building_materials_page_image.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.consultation-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.consultation-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

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

.services-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.services-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.services-subtitle {
    color: #007bff;
    font-size: 1.2rem;
    margin-bottom: 30px;
    border-bottom: 3px solid #007bff;
    padding-bottom: 10px;
    display: inline-block;
}

.service-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.service-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    border-radius: 10px;
}

.service-icon {
    background: #007bff;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin: 10px;
}

.service-content h4 {
    font-size: 1.1rem;
    color: #333;
    margin-top: 10px;
    margin-bottom: 8px;
    font-weight: 600;
}

.service-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.trade-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.trade-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #007bff;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.trade-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.trade-item {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e9ecef;
}

.trade-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 123, 255, 0.15);
    border-color: #007bff;
}

.trade-icon {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.trade-item:hover .trade-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.trade-text h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.trade-text p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.team-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.team-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 50px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-item p {
    color: #666;
    font-weight: 500;
}

/* Page Header */
.page-header {
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/building_materials_page_image.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
    margin-top: 70px;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header-image {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 400px;
}

.page-header-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* About Content */
.about-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-image {
    position: relative;
    overflow: visible;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.story-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -30px;
    width: 200px;
    height: 300px;
    background: #e0e0e0;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    z-index: 0;
    transform: rotate(-5deg);
}

.story-image::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -50px;
    width: 150px;
    height: 200px;
    background: #f0f0f0;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
    transform: rotate(3deg);
}

.story-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}

.story-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ff6b35;
}

.story-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-row {
    display: flex;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: #ff6b35;
    font-size: 1.2rem;
}

.feature-item span {
    color: #666;
    font-weight: 500;
}

/* Services Page Content */
.services-page-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.services-intro p {
    font-size: 1.2rem;
    color: #666;
}

.specialization-section {
    margin-bottom: 60px;
}

.specialization-section h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.specialization-section > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

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

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card .service-icon {
    background: #007bff;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.service-card h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.services-list {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.services-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.services-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.services-list li strong {
    color: #007bff;
    font-weight: 700;
}

.best-service-section {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.best-service-section h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.best-service-section p {
    font-size: 1.1rem;
    color: #666;
}

/* Best Service Banner */
.best-service-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/CTA-bg-1 (1).jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    text-align: center;
    color: #fff;
    position: relative;
}

.best-service-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #ff6b35;
}

.best-service-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #333;
}

.best-service-content {
    position: relative;
    z-index: 2;
}

.accent-line {
    width: 60px;
    height: 3px;
    background: #ff6b35;
    margin: 0 auto 30px;
}

.best-service-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #007bff;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.cta-button:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    color: #fff;
}

.cta-button i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(3px);
}

/* Building Materials Content */
.building-materials-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.materials-intro {
    text-align: center;
    margin-bottom: 60px;
}

.materials-intro h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.materials-intro p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.materials-grid {
    margin-bottom: 60px;
}

.material-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
}

.material-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.material-content {
    padding: 40px;
}

.material-content h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.material-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.materials-list {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

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

.category h4 {
    font-size: 1.3rem;
    color: #007bff;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

.category ul {
    list-style: none;
}

.category li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 20px;
}

.category li::before {
    content: '•';
    color: #007bff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Scrap Content */
.scrap-content {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.scrap-division h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.scrap-division > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.scrap-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.scrap-type {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.scrap-type:hover {
    transform: translateY(-5px);
}

.scrap-type h4 {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

/* Insurance Content */
.insurance-content {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.insurance-services h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 700;
}

.insurance-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.insurance-type {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.insurance-type:hover {
    transform: translateY(-5px);
}

.insurance-type h4 {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

/* Contact Content */
.contact-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-intro {
    text-align: center;
    margin-bottom: 60px;
}

.contact-intro h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
}

.contact-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #007bff;
}

.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-section {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form-section h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-section h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    background: #007bff;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-details p {
    color: #666;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 600;
    color: #fff;
}

.footer-logo {
    margin-bottom: 20px;
}

.logo-placeholder {
    width: 60px;
    height: 40px;
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.logo-placeholder i {
    color: #007bff;
    font-size: 1.5rem;
}

.footer .social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.footer .social-links a {
    background: #007bff;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.footer-links,
.footer-services,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-services li,
.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links li i,
.footer-services li i,
.footer-contact li i {
    color: #007bff;
    font-size: 0.9rem;
    width: 16px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007bff;
}

.footer-services span,
.footer-contact span {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
    font-size: 0.9rem;
}

/* Smooth scrolling for anchor links without JS */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }

    /* Checkbox-driven toggle for mobile nav (no JS) */
    .nav-toggle:checked ~ .nav-menu {
        left: 0;
    }
    .nav-toggle:checked + .hamburger .bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .nav-toggle:checked + .hamburger .bar:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle:checked + .hamburger .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        padding-left: 20px;
        text-align: center;
    }
    
    .welcome-content,
    .services-content,
    .about-story,
    .contact-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-items {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        text-align: center;
    }
    
    .page-header-image {
        position: static;
        transform: none;
        margin-top: 30px;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .material-item {
        grid-template-columns: 1fr;
    }
    
    .feature-row {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Story image frame responsive for tablets */
    .story-image::before {
        width: 150px;
        height: 220px;
        top: -15px;
        right: -20px;
    }
    
    .story-image::after {
        width: 100px;
        height: 150px;
        top: 40px;
        right: -35px;
    }
    
    /* Best service banner responsive for tablets */
    .best-service-banner {
        padding: 80px 0;
    }
    
    .best-service-content h2 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    /* Footer responsive for tablets */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    /* Trade services responsive for tablets */
    .trade-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .trade-item {
        padding: 25px 20px;
    }
    
    .trade-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .trade-text h4 {
        font-size: 1.2rem;
    }
    
    /* Stats responsive for tablets */
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 600px;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
    }
    
    /* Stats responsive for mobile */
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
    }
    
    .stat-item {
        padding: 20px 10px;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
    
    /* Trade services responsive for mobile */
    .trade-items {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trade-item {
        padding: 20px 15px;
    }
    
    .trade-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .trade-text h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .trade-text p {
        font-size: 0.9rem;
    }
    
    /* Story image frame responsive for mobile */
    .story-image::before {
        width: 100px;
        height: 150px;
        top: -10px;
        right: -15px;
    }
    
    .story-image::after {
        width: 70px;
        height: 100px;
        top: 30px;
        right: -25px;
    }
    
    /* Best service banner responsive for mobile */
    .best-service-banner {
        padding: 60px 0;
    }
    
    .best-service-content h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    /* Footer responsive for mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .footer .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

