/*
Theme Name: Zigma Global Wear
Description: Custom WordPress theme for Zigma Global Wear - UK Textiles & Fabric Solutions
Version: 1.0
Author: Custom Development
*/

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Three-Part Header System */



/* Logo Header (Center) */
.logo-header {
    background: #ffffff;
    padding: 30px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.site-logo {
    text-decoration: none;
    color: #2c3e50;
    display: flex;
    align-items: center;
}

.logo-image {
    max-height: 240px;
    max-width: 1050px;
    height: auto;
    width: auto;
}



/* Simple Navigation */
.simple-nav-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 1px solid #e9ecef;
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
}

.simple-nav-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.simple-navigation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
}

.simple-nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 60px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 15px 0;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: #3498db;
    border-bottom-color: #3498db;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #2c3e50;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 0;
}

.caret {
    font-size: 12px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.nav-item--parent:hover .caret {
    transform: rotate(180deg);
}

/* Mega Dropdown Styles */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-top: 3px solid #3498db;
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-item--parent:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-dropdown-inner {
    display: flex;
    padding: 30px;
}

.mega-content {
    flex: 2;
    display: flex;
    gap: 40px;
}

.mega-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e9ecef;
}

.mega-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-submenu li {
    margin-bottom: 8px;
}

.mega-submenu a {
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.mega-submenu a:hover {
    color: #3498db;
    padding-left: 10px;
}

.mega-featured {
    flex: 1;
    background: #f8f9fa;
    padding: 20px;
    margin-left: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.featured-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.featured-content p {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 15px;
}

.featured-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.featured-link:hover {
    color: #2980b9;
}

/* Mobile Mega Menu */
.mobile-mega-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 20px;
}

/* CTA Button Styles */
.cta-button {
    background: #3498db;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background: #2980b9;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu .nav-menu {
    flex-direction: column;
    gap: 15px;
}

/* Mobile Responsive Styles for Three-Part Header */
@media (max-width: 768px) {
    .utility-header {
        display: none; /* Hide utility bar on mobile */
    }
    
    .logo-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .search-container {
        min-width: 280px;
        width: 100%;
        max-width: 400px;
    }
    
    .logo-image {
        max-height: 70px;
        max-width: 250px;
    }
    
    .simple-nav-menu {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .simple-nav-menu.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 20px;
        gap: 0;
    }
    
    .simple-nav-menu.mobile-open .nav-item {
        border-bottom: 1px solid #e9ecef;
    }
    
    .simple-nav-menu.mobile-open .nav-item:last-child {
        border-bottom: none;
    }
    
    .simple-nav-menu.mobile-open .nav-link {
        padding: 12px 0;
        border-bottom: none;
        text-align: center;
    }
    
    .mega-menu-header {
        box-shadow: 0 1px 5px rgba(0,0,0,0.1);
    }
    
    /* Hide mega dropdowns on mobile */
    .mega-dropdown {
        display: none !important;
    }
}

/* Larger screens - hide mobile toggle */
@media (min-width: 769px) {
    .mobile-mega-toggle {
        display: none;
    }
}

/* Body padding adjustment for sticky header */
body.sticky-header-active {
    transition: padding-top 0.3s ease;
}

/* Main Content */
.site-main {
    margin-top: 0; /* No fixed margin - handled by JavaScript for sticky behavior */
    min-height: calc(100vh - 200px); /* Account for both header parts */
}

/* Content Containers */
.content-container {
    border: 2px dashed #ddd;
    padding: 40px 20px;
    margin: 20px 0;
    text-align: center;
    background: #f9f9f9;
    border-radius: 8px;
}

.content-container h3 {
    color: #666;
    margin-bottom: 10px;
}

.content-container p {
    color: #999;
    font-style: italic;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

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

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-section p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Section Styles */
.section {
    padding: 80px 20px;
}

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

.section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
}

.section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #34495e;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

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

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: #3498db;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.product-category {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-category:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 200px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.product-content {
    padding: 30px;
}

.product-content h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-button {
    background: #3498db;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: #2980b9;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: #3498db;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

/* Map Container */
.map-container {
    height: 400px;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
    margin: 40px 0;
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

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

/* Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) {
    .hero-section h1 {
        font-size: 40px;
    }
    
    .section h2 {
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header-container {
        height: 70px;
        padding: 0 15px;
    }
    
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .site-main {
        margin-top: 70px;
    }
    
    .hero-section {
        padding: 60px 15px;
    }
    
    .hero-section h1 {
        font-size: 32px;
    }
    
    .hero-section p {
        font-size: 18px;
    }
    
    .section {
        padding: 60px 15px;
    }
    
    .section h2 {
        font-size: 28px;
    }
    
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form {
        padding: 20px;
        margin: 0 15px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 28px;
    }
    
    .hero-section p {
        font-size: 16px;
    }
    
    .section h2 {
        font-size: 24px;
    }
    
    .header-contact {
        font-size: 14px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-30 {
    margin-top: 30px;
}

.hidden {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== HERO SLIDESHOW STYLES ===== */

.hero-slideshow {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.slideshow-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.slideshow-main {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.slideshow-wrapper {
    position: relative;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    width: 100%;
    display: block;
}

.slide-content img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 600px;
    object-fit: contain;
}

.slide-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    border-radius: 8px;
}

.slide-overlay h2 {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 600;
}

.slide-overlay p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* Slideshow Controls */
.slideshow-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    pointer-events: none;
}

.prev-btn, .next-btn {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* Pagination Dots */
.slideshow-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active, .dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Side Banners */
.slideshow-sidebar {
    width: 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-banner {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.side-banner:hover {
    transform: translateY(-5px);
}

.banner-content {
    position: relative;
    display: block;
    height: 180px;
}

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

.side-banner:hover .banner-content img {
    transform: scale(1.05);
}

.banner-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 15px;
    border-radius: 6px;
    color: white;
    text-align: center;
}

.banner-overlay.safety {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.banner-overlay.eco {
    background: rgba(76, 175, 80, 0.9);
    color: white;
}

.banner-overlay.premium {
    background: rgba(156, 39, 176, 0.9);
    color: white;
}

.banner-overlay h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
}

.banner-overlay p {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .slideshow-container {
        flex-direction: column;
        padding: 15px;
    }
    
    .slideshow-sidebar {
        width: 100%;
        flex-direction: row;
        gap: 15px;
    }
    
    .side-banner {
        flex: 1;
    }
    
    .banner-content {
        height: 120px;
    }
    
    .slideshow-wrapper {
        min-height: 250px;
    }
    
    .slide-overlay {
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 15px;
    }
    
    .slide-overlay h2 {
        font-size: 20px;
    }
    
    .slide-overlay p {
        font-size: 12px;
    }
    
    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .slideshow-sidebar {
        flex-direction: column;
    }
    
    .slideshow-wrapper {
        min-height: 200px;
    }
    
    .slide-overlay {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 12px;
    }
    
    .slide-overlay h2 {
        font-size: 18px;
    }
    
    .prev-btn, .next-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

/* ===== CONTACT PAGE HERO SECTION ===== */

.contact-hero {
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.contact-hero-content {
    flex: 1;
}

.contact-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-hero-content p {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-quick-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-block;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.phone-btn {
    background: #27ae60;
    color: white;
    border-color: #27ae60;
}

.phone-btn:hover {
    background: #219a52;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.email-btn {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

.email-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.contact-hero-image {
    flex: 1;
    max-width: 500px;
}

.contact-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Details Grid */
.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-detail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.contact-detail-icon {
    font-size: 24px;
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    min-width: 48px;
    text-align: center;
}

.contact-detail-content {
    flex: 1;
}

.contact-detail-content h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.contact-detail-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

.contact-detail-content a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

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

/* Map Container Styles */
.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.store-address-info {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.store-address-info h3 {
    margin: 0 0 15px 0;
    font-size: 24px;
    color: #2c3e50;
}

.address-text {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.google-map-embed {
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.google-map-embed iframe {
    display: block;
    width: 100%;
    height: 500px;
    border-radius: 10px;
}

/* Responsive Contact Hero */
@media (max-width: 768px) {
    .contact-hero-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .contact-hero-content h1 {
        font-size: 36px;
    }
    
    .contact-hero-content p {
        font-size: 18px;
    }
    
    .contact-quick-links {
        justify-content: center;
    }
    
    .contact-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .contact-detail-item {
        text-align: left;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 30px 15px;
    }
    
    .contact-hero-content h1 {
        font-size: 28px;
    }
    
    .contact-hero-content p {
        font-size: 16px;
    }
    
    .contact-quick-links {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* ===== GRID LAYOUT SYSTEM ===== */

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

/* Grid System */
.grid12-4 {
    width: 33.333%;
    float: left;
    padding: 0 15px;
    box-sizing: border-box;
}

.grid12-8 {
    width: 66.666%;
    float: left;
    padding: 0 15px;
    box-sizing: border-box;
}

.clearer {
    clear: both;
    height: 0;
    overflow: hidden;
}

/* Feature Boxes */
.feature {
    text-align: center;
    padding: 20px 10px;
}

.feature-icon-hover {
    transition: transform 300ms ease;
}

.feature-icon-hover:hover {
    transform: translateY(-5px);
}

.indent {
    padding: 20px;
}

.indent-size-xl {
    padding: 30px 20px;
}

.feature h3 {
    margin: 15px 0 10px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.feature p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.feature .ic {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

/* Responsive Grid */
@media (max-width: 768px) {
    .grid12-4, .grid12-8 {
        width: 100%;
        float: none;
        margin-bottom: 30px;
    }
    
    .inner-container {
        padding: 30px 15px;
    }
    
    .feature {
        padding: 15px 5px;
    }
    
    .indent-size-xl {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .inner-container {
        padding: 20px 10px;
    }
    
    .grid12-4 {
        margin-bottom: 25px;
    }
    
    .feature h3 {
        font-size: 16px;
    }
    
    .feature p {
        font-size: 13px;
    }
    
    .feature .ic {
        font-size: 36px;
    }
} 