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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-top: 100px; /* Adjusted to match fixed header height */
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.highlight {
    color: #D4AF37;
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    color: #2C2C2C;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary:hover {
    background: #D4AF37;
    color: #2C2C2C;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    font-weight: 600;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Enhanced WhatsApp button styling */
.btn-whatsapp i {
    color: white;
    font-size: 1.1em;
}

.btn-whatsapp:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.6);
}

.btn-white {
    background: rgba(255, 255, 255, 0.9);
    color: #2C2C2C;
    backdrop-filter: blur(10px);
}

.btn-white:hover {
    background: #fff;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(44, 44, 44, 0.98);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    width: 100%;
}

.header-top {
    background: #2C2C2C;
    padding: 8px 0;
    font-size: 14px;
    position: relative;
    z-index: 10000;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.header-info {
    display: flex;
    gap: 30px;
    color: #E5E5E5;
}

.header-info i {
    color: #D4AF37;
    margin-right: 8px;
}

.header-tagline {
    color: #D4AF37;
    font-weight: 500;
}

.navbar {
    padding: 15px 0;
    background: rgba(44, 44, 44, 0.98);
    position: relative;
    z-index: 10000;
}

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

.logo {
    height: 50px;
    width: auto;
}

/* Logo Link Styling */
.nav-brand a,
.footer-brand a,
.product-showcase a {
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-brand a:hover,
.footer-brand a:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.product-showcase a:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

/* Ensure logo images are properly sized */
.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.showcase-image {
    width: 100%;
    height: 500px; /* Reduced from 700px */
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

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

.nav-link {
    color: #E5E5E5;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #D4AF37;
}

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

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

/* Message Banner */
.message-banner {
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    color: #2C2C2C;
    padding: 15px 0;
    text-align: center;
    position: relative;
    z-index: 99;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    margin-top: 0; /* Remove extra gap below header */
}

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

.banner-content p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.banner-content strong {
    font-weight: 700;
    color: #2C2C2C;
}

@media (max-width: 768px) {
    .banner-content p {
        font-size: 14px;
    }
    
    .message-banner {
        margin-top: 0; /* Align with desktop */
    }
    
    .header-social {
        gap: 8px; /* Reduced gap for more icons */
    }
    
    .header-social-icon {
        width: 28px; /* Slightly smaller for 5 icons */
        height: 28px;
        font-size: 13px;
    }
    
    .header-tagline {
        font-size: 13px;
    }
    
    .hero-tagline {
        gap: 12px;
        justify-content: center;
    }
    
    .tagline-item {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .banner-content p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .message-banner {
        padding: 12px 0;
        margin-top: 0; /* Align with desktop */
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a, #2C2C2C);
    color: white;
    padding: 40px 0 20px; /* Reduced overall height */
    position: relative;
    overflow: hidden;
    margin-top: 0; /* No negative offset to avoid white gaps */
    padding-top: 60px; /* Keep content high while clearing header */
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px; /* Tighter spacing */
    align-items: center;
}

/* Constrain hero text block for readability */
.hero-content {
    max-width: 640px;
}

.hero-content p,
.hero-subtitle {
    max-width: 58ch;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 15px; /* Reduced from 20px */
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: #D4AF37;
}

.hero-title {
    font-size: 2.75rem; /* Cleaner hierarchy */
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 8px;
    color: white;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: #E5E5E5;
    margin-bottom: 16px;
    line-height: 1.6;
}

.hero-tagline {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.tagline-item {
    background: rgba(212, 175, 55, 0.12);
    color: #D4AF37;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.28);
    transition: all 0.3s ease;
}

.tagline-item:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 16px; /* Make stats more visible */
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px; /* Compact cards */
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 12px;
    padding: 14px 8px;
    backdrop-filter: blur(6px);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #D4AF37;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.stat-label {
    color: #E5E5E5;
    font-size: 0.9rem;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

/* Showcase Description Banner - Now Below Image */
.showcase-description {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 18px 22px;
    text-align: center;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 500px;
}

.showcase-description p {
    color: #E5E5E5;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.product-showcase {
    width: 100%;
    max-width: 100%; /* Fill available column width */
    height: 360px; /* Match wide, low-height rectangle */
    position: relative;
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.showcase-overlay i {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 20px;
    display: block;
}

.showcase-overlay span {
    font-size: 1.1rem;
    color: white;
    font-weight: 500;
}

.product-showcase {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.showcase-image {
    width: 100%;
    height: 100%; /* Fill the showcase container height */
    object-fit: contain; /* Preserve image proportions */
    transition: transform 0.3s ease;
    background: transparent;
}

.product-showcase:hover .showcase-image {
    transform: scale(1.05);
}

.showcase-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(212, 175, 55, 0.9);
    color: #2C2C2C;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Why Choose Section */
.why-choose {
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #2C2C2C;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2C2C2C;
}

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

/* Hardware Categories */
.hardware-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 44, 44, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #2C2C2C;
}

.product-info p {
    color: #666;
    font-size: 0.9rem;
}

.category-container {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-container:hover::before {
    transform: scaleX(1);
}

.category-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 20px;
    color: #2C2C2C;
    transition: transform 0.3s ease;
}

.category-container:hover .category-icon {
    transform: scale(1.1);
}

.category-container h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #2C2C2C;
}

.category-container p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Hardware Message Section */
.hardware-message {
    margin-top: 60px;
}

.message-card {
    background: linear-gradient(135deg, #2C2C2C, #1a1a1a);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.message-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #D4AF37;
}

.message-card p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #E5E5E5;
    line-height: 1.6;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Modal Styles */
.modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 20px;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
}

.close:hover {
    color: #D4AF37;
}

.subcategories-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.subcategory-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #D4AF37;
    transition: all 0.3s ease;
}

.subcategory-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.subcategory-item h4 {
    color: #2C2C2C;
    margin-bottom: 5px;
    font-size: 1rem;
}

.subcategory-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.section-footer {
    text-align: center;
}

/* Quality Section */
.quality-section {
    background: #2C2C2C;
    color: #fff;
}

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

.quality-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
}

.quality-text p {
    font-size: 1.1rem;
    color: #E5E5E5;
    margin-bottom: 40px;
    line-height: 1.6;
}

.quality-features {
    display: grid;
    gap: 20px;
}

.quality-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #D4AF37;
}

.quality-item i {
    color: #D4AF37;
    font-size: 20px;
}

.quality-visual {
    position: relative;
}

.quality-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* Testimonials */
.testimonials {
    background: #f8f9fa;
}

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

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 40px;
    width: 40px;
    height: 40px;
    background: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2C2C2C;
    font-size: 18px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
    font-style: italic;
}

.author-info h4 {
    color: #2C2C2C;
    margin-bottom: 5px;
}

.author-info span {
    color: #D4AF37;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.cta-content p {
    font-size: 1.1rem;
    color: #E5E5E5;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-actions .btn {
    min-width: 180px;
    justify-content: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #E5E5E5;
}

.contact-item i {
    color: #D4AF37;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-brand {
    max-width: 300px; /* Add max-width for better layout */
    text-align: center; /* Center align the brand content */
    margin: 0 auto; /* Center the brand section itself */
}

.footer-brand p {
    color: #999;
    line-height: 1.6;
    margin-bottom: 15px; /* Add margin for better spacing */
}

.social-icons {
    display: flex;
    gap: 12px; /* Reduced from 20px */
    margin-top: 20px; /* Reduced from 25px */
    flex-wrap: wrap;
    align-items: center;
    justify-content: center; /* Center the icons */
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; /* Reduced from 50px */
    height: 38px; /* Reduced from 50px */
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px; /* Reduced from 18px */
    border: 1px solid rgba(212, 175, 55, 0.3); /* Reduced border width */
}

.social-icon:hover {
    background: #D4AF37;
    color: #2C2C2C;
    transform: translateY(-2px) scale(1.05); /* Reduced scale from 1.1 */
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4); /* Reduced shadow */
    border-color: #D4AF37;
}

/* Special styling for TikTok icon */
.social-icon[title="TikTok"]:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* WhatsApp special hover for footer */
.social-icon[title="WhatsApp"]:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

/* Email special hover for footer */
.social-icon[title="Email"]:hover {
    background: #EA4335;
    color: #fff;
    border-color: #EA4335;
}

/* Phone special hover for footer */
.social-icon[title="Phone"]:hover {
    background: #1976D2;
    color: #fff;
    border-color: #1976D2;
}

/* Location special hover for footer */
.social-icon[title="Location"]:hover {
    background: #4285F4;
    color: #fff;
    border-color: #4285F4;
}

/* Header Social Icons */
.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.header-social {
    display: flex;
    gap: 12px; /* Slightly reduced for 5 icons */
    align-items: center;
}

.header-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.header-social-icon:hover {
    background: #D4AF37;
    color: #2C2C2C;
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    border-color: #D4AF37;
}

/* Special TikTok hover for header */
.header-social-icon[title*="TikTok"]:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Special WhatsApp hover for header */
.header-social-icon[title*="WhatsApp"]:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

/* Special Email hover for header */
.header-social-icon[title*="Email"]:hover {
    background: #EA4335;
    color: #fff;
    border-color: #EA4335;
}

/* TikTok special animations */
.social-icon[title="TikTok"],
.header-social-icon[title*="TikTok"] {
    animation: tiktok-pulse 3s infinite;
}

@keyframes tiktok-pulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3); 
    }
    50% { 
        box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.1); 
    }
}

.footer-products h4 {
    color: #D4AF37;
    margin-bottom: 20px;
}

.footer-products ul {
    list-style: none;
}

.footer-products li {
    margin-bottom: 10px;
}

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

.footer-products a:hover {
    color: #D4AF37;
}

.footer-links h4,
.footer-contact h4 {
    color: #D4AF37;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

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

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

.footer-contact .contact-item {
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

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

.footer-legal a:hover {
    color: #D4AF37;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 90px; /* Slightly less to bring content up */
    }
    
    .hero {
        margin-top: 0;
        padding-top: 80px; /* Bring hero content higher */
        padding-bottom: 20px;
    }
    
    .page-header {
        margin-top: -100px;
        padding-top: 180px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 28px;
    }
    
    .showcase-description {
        max-width: 100%;
        padding: 16px 18px;
        margin-top: 20px;
    }
    
    .showcase-description p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .product-showcase {
        max-width: 100%;
        height: 300px; /* Proportional smaller rectangle on mobile */
        margin: 0 auto;
    }
    
    .showcase-image {
        height: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .quality-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px; /* Add consistent gap between sections */
    }
    
    .footer-brand {
        max-width: 100%; /* Full width on mobile */
        margin: 0 auto;
    }
    
    .social-icons {
        justify-content: center;
        gap: 10px; /* Reduced from 15px */
    }
    
    .social-icon {
        width: 36px; /* Reduced from 45px */
        height: 36px;
        font-size: 14px; /* Reduced from 16px */
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hardware-categories {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 15px;
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .product-image {
        height: 120px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-info h3 {
        font-size: 1rem;
    }
    
    .product-info p {
        font-size: 0.8rem;
    }
    
    .category-container {
        padding: 20px 15px;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .category-container h3 {
        font-size: 1rem;
    }
    
    .category-container p {
        font-size: 0.8rem;
    }
    
    .message-card {
        padding: 30px 20px;
    }
    
    .message-card h3 {
        font-size: 1.5rem;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .quote-highlight h3 {
        font-size: 1.4rem;
    }
    
    .quote-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }
    
    .subcategories-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .showcase-description {
        padding: 14px 16px;
        border-radius: 12px;
    }
    
    .showcase-description p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .contact-card {
        padding: 20px 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .contact-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .contact-card p {
        font-size: 0.8rem;
    }
    
    .quote-highlight {
        padding: 20px;
    }
    
    .quote-highlight h3 {
        font-size: 1.2rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .urgent-buttons {
        flex-direction: column;
    }
    
    .product-image {
        height: 100px;
    }
    
    .product-info {
        padding: 10px;
    }
    
    .product-info h3 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .product-info p {
        font-size: 0.7rem;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #2C2C2C, #1a1a1a);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-top: -120px; /* Compensate for body padding */
    padding-top: 200px; /* Add extra top padding */
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #D4AF37;
}

.page-header p {
    font-size: 1.2rem;
    color: #E5E5E5;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2C2C2C;
}

.about-text h3 {
    font-size: 1.5rem;
    margin: 25px 0 15px 0;
    color: #D4AF37;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.team-section {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.team-member {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #D4AF37;
}

.team-member h3 {
    margin-bottom: 15px;
    color: #2C2C2C;
}

.team-member p {
    color: #666;
}

/* Products Page Styles */
.product-categories {
    padding: 60px 0;
    background: #f8f9fa;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.category-tab {
    padding: 15px 30px;
    border: 2px solid #D4AF37;
    background: transparent;
    color: #D4AF37;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-tab.active,
.category-tab:hover {
    background: #D4AF37;
    color: #2C2C2C;
}

.product-category {
    display: none;
    padding: 80px 0;
}

.product-category.active {
    display: block;
}

.product-features {
    list-style: none;
    margin-top: 15px;
}

.product-features li {
    padding: 5px 0;
    color: #666;
    font-size: 0.9rem;
}

.product-features li:before {
    content: "✓";
    color: #D4AF37;
    font-weight: bold;
    margin-right: 8px;
}

.product-enquiry {
    background: linear-gradient(135deg, #2C2C2C, #1a1a1a);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.enquiry-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #D4AF37;
}

.enquiry-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #E5E5E5;
}

/* Projects Page Styles */
.project-stats {
    background: #f8f9fa;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

.featured-projects {
    padding: 80px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.project-category {
    background: #D4AF37;
    color: #2C2C2C;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.project-info {
    padding: 30px;
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2C2C2C;
}

.project-location {
    color: #D4AF37;
    font-weight: 500;
    margin-bottom: 15px;
}

.project-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}
    
.category-container {
    padding: 20px 15px;
}
    
.category-icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
}
    
.category-container h3 {
    font-size: 1rem;
}
    
.category-container p {
    font-size: 0.8rem;
}
    
.message-card {
    padding: 30px 20px;
}
    
.message-card h3 {
    font-size: 1.5rem;
}
    
.contact-options {
    flex-direction: column;
    align-items: center;
}
    
.modal-content {
    width: 95%;
    margin: 10% auto;
    padding: 20px;
}
    
.subcategories-list {
    grid-template-columns: 1fr;
    gap: 10px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.9rem;
}

.detail-item i {
    color: #D4AF37;
    width: 20px;
}

.project-categories {
    padding: 80px 0;
    background: #f8f9fa;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #2C2C2C;
}

.category-card h3 {
    margin-bottom: 15px;
    color: #2C2C2C;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
}

.category-stats {
    color: #D4AF37;
    font-weight: 600;
    font-size: 1.1rem;
}

.client-testimonials {
    padding: 80px 0;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.project-name {
    color: #D4AF37;
    font-size: 0.9rem;
    margin-top: 5px;
}

.project-enquiry {
    background: linear-gradient(135deg, #2C2C2C, #1a1a1a);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.enquiry-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Quality Page Styles */
.quality-overview {
    padding: 80px 0;
}

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

.quality-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2C2C2C;
}

.quality-text p {
    margin-bottom: 30px;
    color: #666;
    line-height: 1.8;
}

.quality-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.quality-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #666;
}

.quality-item i {
    color: #D4AF37;
    font-size: 1.2rem;
}

.quality-visual img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.quality-standards {
    padding: 80px 0;
    background: #f8f9fa;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.standard-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.standard-card:hover {
    transform: translateY(-10px);
}

.standard-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #2C2C2C;
}

.standard-card h3 {
    margin-bottom: 15px;
    color: #2C2C2C;
}

.standard-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.standard-details {
    display: flex;
    justify-content: space-between;
    color: #D4AF37;
    font-weight: 600;
}

.manufacturing-process {
    padding: 80px 0;
}

.process-timeline {
    margin-top: 50px;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    margin-bottom: 40px;
    align-items: start;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C2C2C;
}

.step-content h3 {
    margin-bottom: 15px;
    color: #2C2C2C;
}

.step-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.step-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.step-features span {
    background: #f0f0f0;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
}

.quality-control {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.qc-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.qc-item:hover {
    transform: translateY(-10px);
}

.qc-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2C2C2C;
}

.qc-item h3 {
    margin-bottom: 15px;
    color: #2C2C2C;
}

.qc-item p {
    color: #666;
    line-height: 1.6;
}

.quality-commitment {
    padding: 80px 0;
    text-align: center;
}

.commitment-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2C2C2C;
}

.commitment-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.commitment-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.commitment-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #666;
    font-size: 1.1rem;
}

.commitment-item i {
    color: #D4AF37;
    font-size: 1.2rem;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #2C2C2C;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: #2C2C2C;
}

.contact-card p {
    color: #666;
    margin-bottom: 5px;
}

.contact-note {
    color: #D4AF37;
    font-size: 0.9rem;
    font-style: italic;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.contact-form-section {
    padding: 80px 0;
}

/* Quote Section Enhancements */
.quote-highlight {
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    text-align: center;
    color: #2C2C2C;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: rgba(44, 44, 44, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    color: #2C2C2C;
}

.quote-highlight h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.quote-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #D4AF37;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #2C2C2C;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: #2C2C2C;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.benefit-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.quote-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #2C2C2C, #1a1a1a);
    border-radius: 15px;
    text-align: center;
}

.quote-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 5px;
}

.quote-stats .stat-label {
    color: #E5E5E5;
    font-size: 0.9rem;
}

.urgent-contact {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #D4AF37;
    text-align: center;
}

.urgent-contact h4 {
    color: #2C2C2C;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.urgent-contact p {
    color: #666;
    margin-bottom: 20px;
}

.urgent-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.contact-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2C2C2C;
}

.contact-text p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

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

.feature-item i {
    color: #D4AF37;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2C2C2C;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: #666;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
}

.office-location {
    padding: 80px 0;
    background: #f8f9fa;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.location-info h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2C2C2C;
}

.location-details {
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.detail-item i {
    color: #D4AF37;
    font-size: 1.2rem;
    margin-top: 5px;
}

.detail-item strong {
    color: #2C2C2C;
}

.location-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.location-map {
    background: #e0e0e0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.map-placeholder {
    text-align: center;
    color: #666;
}

.map-placeholder i {
    font-size: 4rem;
    color: #D4AF37;
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2C2C2C;
}

.map-placeholder span {
    font-size: 0.9rem;
}

.faq-section {
    padding: 80px 0;
}

.faq-grid {
    margin-top: 50px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    color: #2C2C2C;
    font-size: 1.1rem;
}

.faq-question i {
    color: #D4AF37;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px 25px;
    color: #666;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .about-grid,
    .quality-content,
    .contact-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-features {
        grid-template-columns: 1fr;
    }
    
    .quality-features {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 20px;
    }
    
    .enquiry-actions {
        flex-direction: column;
        align-items: center;
    }
    
        .location-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #D4AF37;
    color: #2C2C2C;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9997;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top-btn:hover {
    background: #F4D03F;
    transform: translateY(-2px);
}

/* Ensure proper spacing for all sections */
section {
    position: relative;
    z-index: 1;
}

