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

body {
    font-family: 'Maven Pro', sans-serif;
    line-height: 1.5;
    color: #333;
    overflow-x: hidden;
    font-size: 14px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    /* Fix for iOS Safari viewport height */
    height: 100%;
    height: calc(var(--vh, 1vh) * 100);
}

/* Selection color */
::selection {
    background: #F97808;
    color: #fff;
}

/* Focus styles */
*:focus {
    outline: 2px solid #144982;
    outline-offset: 2px;
}

/* Loading spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-brand .logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(20, 73, 130, 0.3));
    transition: transform 0.3s ease;
}

.nav-brand .logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.05);
    padding: 0.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-menu li a {
    color: #333;
    background: transparent;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    overflow: hidden;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #144982;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
    z-index: -1;
}

.nav-menu li a:hover::before {
    opacity: 1;
}

.nav-menu li a:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(20, 73, 130, 0.5);
}

.nav-menu li a.active {
    background: #144982;
    color: #fff;
    box-shadow: 0 4px 15px rgba(20, 73, 130, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
}

.hamburger:hover {
    background: rgba(0, 0, 0, 0.1);
}

.hamburger span {
    width: 25px;
    height: 2.5px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 0 50px;
    position: relative;
    overflow: hidden;
}

/* Hero Background with Ken Burns Animation */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        rgba(20, 73, 130, 0.6),
        url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    animation: kenBurns 30s ease-in-out infinite;
    z-index: 0;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translateX(0) translateY(0);
    }
    25% {
        transform: scale(1.1) translateX(-2%) translateY(-2%);
    }
    50% {
        transform: scale(1.15) translateX(2%) translateY(1%);
    }
    75% {
        transform: scale(1.1) translateX(-1%) translateY(2%);
    }
    100% {
        transform: scale(1) translateX(0) translateY(0);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: transparent;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 550px;
    gap: 2.5rem;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    margin: 0 auto;
}

.hero-text {
    animation: fadeInLeft 0.8s ease-out;
}

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

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #fff;
    background: rgba(255, 107, 53, 0.1);
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.brand-logo i {
    color: #F97808;
    font-size: 1.4rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.brand-logo span {
    font-weight: 700;
    color: #F97808;
    letter-spacing: 0.5px;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.15;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9);
    letter-spacing: -0.5px;
}

.hero-text h1 .highlight {
    color: #F97808;
    font-weight: 800;
    display: inline-block;
    position: relative;
}

.hero-text h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 0;
    right: 0;
    height: 3px;
    background: #F97808;
    border-radius: 2px;
}

.hero-text p {
    font-size: 0.95rem;
    color: #e0e0e0;
    margin-bottom: 1.8rem;
    max-width: 520px;
    line-height: 1.6;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-features {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.hero-feature {
    flex: 0 0 auto;
}

.feature-box {
    background: rgba(249, 120, 8, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(249, 120, 8, 0.3);
    border-radius: 4px;
    padding: 0.9rem 1.1rem;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.feature-box:hover {
    transform: translateY(-4px);
    background: rgba(249, 120, 8, 0.2);
    border-color: rgba(249, 120, 8, 0.5);
    box-shadow: 0 8px 25px rgba(249, 120, 8, 0.3);
}

.feature-box strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.feature-box small {
    display: block;
    color: #ffd4c4;
    font-size: 0.7rem;
    font-weight: 500;
}

.hero-form {
    background: #ffffff;
    border-radius: 6px;
    padding: 1.5rem;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 107, 53, 0.1);
    max-width: 550px;
    width: 100%;
    animation: fadeInRight 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

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

.hero-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #F97808;
}

.form-icon {
    width: 48px;
    height: 48px;
    background: #F97808;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.6rem;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.form-icon i {
    font-size: 1.3rem;
    color: #fff;
}

.hero-form h3 {
    color: #144982;
    margin-bottom: 0.25rem;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.form-subtitle {
    text-align: center;
    color: #333;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.form-response-time {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    background: rgba(255, 107, 53, 0.08);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
    margin-left: 50%;
    transform: translateX(-50%);
}

.form-response-time i {
    color: #F97808;
    margin-right: 0.3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 0.8rem;
}

.form-group label {
    display: block;
    color: #333;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.form-group label .required {
    color: #F97808;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: #fff;
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 9px center;
    padding-right: 28px;
}

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

.btn-submit {
    width: 100%;
    background: #144982;
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
    box-shadow: 0 5px 20px rgba(20, 73, 130, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(20, 73, 130, 0.5);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.form-footer {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    margin-top: 1rem;
    line-height: 1.5;
    padding: 1rem;
    background: rgba(20, 73, 130, 0.05);
    border-radius: 6px;
    border-left: 4px solid #25D366;
}

/* About Section */
.about {
    padding: 3rem 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.6rem;
}

.section-header p {
    font-size: 0.95rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: #F97808;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.feature-card h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.6rem;
}

.feature-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Products Section */
.products {
    padding: 3rem 0;
    background: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-3px);
}

.product-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 15px;
    box-sizing: border-box;
}

.product-image::before {
    content: '🔥';
    font-size: 2.5rem;
    opacity: 0.3;
}

.product-image.cylinder::before {
    content: '⛽';
}

.product-image.regulator::before {
    content: '🔧';
}

.product-image.hose::before {
    content: '🔗';
}

.product-image.burner::before {
    content: '🔥';
}

.product-image.detector::before {
    content: '📡';
}

.product-image.trolley::before {
    content: '🛒';
}

.product-image.valve::before {
    content: '⚙️';
}

.product-image.gauge::before {
    content: '📊';
}

.product-image.safety::before {
    content: '🛡️';
}

.product-info {
    padding: 1.2rem;
}

.product-info h3 {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 0.5rem;
    min-height: 2.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description {
    color: #666;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    line-height: 1.5;
    min-height: 3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-price .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #F97808;
}

.product-price .compare-price {
    font-size: 0.95rem;
    color: #999;
    text-decoration: line-through;
}

.btn-add-to-cart {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #144982;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(20, 73, 130, 0.4);
}

.btn-add-to-cart:active {
    transform: translateY(0);
}

.btn-out-of-stock {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #e0e0e0;
    color: #999;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: not-allowed;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #F97808;
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.product-badge.out-of-stock {
    background: #666;
}

.product-image img {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    object-fit: contain;
    position: absolute;
    top: 15px;
    left: 15px;
    border-radius: 6px;
}

/* Products CTA */
.products-cta {
    text-align: center;
    margin-top: 3rem;
}

.products-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #144982;
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(20, 73, 130, 0.3);
    position: relative;
    overflow: hidden;
}

.products-cta .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.products-cta .btn-primary:hover::before {
    left: 100%;
}

.products-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(20, 73, 130, 0.5);
}

.products-cta .btn-primary::after {
    content: '→';
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
}

.products-cta .btn-primary:hover::after {
    transform: translateX(4px);
}

/* Coverage Area Section */
.coverage {
    padding: 3rem 0;
    background: #f8f9fa;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.coverage-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.coverage-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.coverage-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.coverage-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.coverage-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 1rem;
}

.coverage-item > div {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.coverage-item i {
    color: #F97808;
    font-size: 1rem;
    flex-shrink: 0;
}

.coverage-item small {
    font-size: 0.8rem;
    color: #666;
    margin-left: 1.6rem;
    font-style: italic;
}

.hq-badge {
    display: inline-block;
    background: #F97808;
    color: #fff;
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
    border-radius: 2px;
    font-weight: 600;
    margin-left: 0.3rem;
}

.coverage-map {
    position: relative;
}

.delivery-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #F97808;
    color: #fff;
    padding: 0.8rem 1.2rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
    z-index: 10;
}

.delivery-badge i {
    font-size: 1.3rem;
}

.delivery-badge strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
}

.delivery-badge small {
    display: block;
    font-size: 0.7rem;
    opacity: 0.9;
}

.map-container {
    background: #1a2332;
    border-radius: 6px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.coverage-svg {
    width: 100%;
    height: auto;
}

.service-circle {
    fill: none;
    stroke: #F97808;
    stroke-width: 2;
    opacity: 0.5;
}

.location-marker {
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-marker.headquarters {
    fill: #F97808;
    stroke: #fff;
    stroke-width: 2;
}

.location-marker.service-area {
    fill: #4a90e2;
    stroke: #fff;
    stroke-width: 2;
}

.location-marker:hover {
    transform: scale(1.2);
    filter: brightness(1.2);
}

.location-label {
    fill: #fff;
    font-size: 11px;
    text-anchor: middle;
    font-weight: 500;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.85rem;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.legend-dot.headquarters-dot {
    background: #F97808;
}

.legend-dot.service-dot {
    background: #4a90e2;
}

/* Services Section */
.services {
    padding: 3rem 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

.service-image {
    width: 100%;
    height: 320px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease;
}

.service-card:hover .service-image::before {
    background: rgba(0, 0, 0, 0.6);
}

.service-image.wall-mounted {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 320"><rect fill="%23e8e8e8" width="400" height="320"/><rect fill="%23d0d0d0" x="20" y="40" width="120" height="180" rx="5"/><rect fill="%23ff6b35" x="30" y="50" width="40" height="60" rx="3"/><circle fill="%23666" cx="80" cy="80" r="8"/><rect fill="%23999" x="160" y="100" width="200" height="8" rx="4"/><rect fill="%23999" x="160" y="130" width="180" height="8" rx="4"/><text x="200" y="200" font-family="Arial" font-size="16" fill="%23666">Wall Installation</text></svg>');
}

.service-image.secure-storage {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 320"><rect fill="%23e0e0e0" width="400" height="320"/><rect fill="%23333" x="80" y="60" width="240" height="200" rx="8" stroke="%23666" stroke-width="4" fill="none"/><line x1="100" y1="60" x2="100" y2="260" stroke="%23666" stroke-width="3"/><line x1="140" y1="60" x2="140" y2="260" stroke="%23666" stroke-width="3"/><line x1="180" y1="60" x2="180" y2="260" stroke="%23666" stroke-width="3"/><line x1="220" y1="60" x2="220" y2="260" stroke="%23666" stroke-width="3"/><line x1="260" y1="60" x2="260" y2="260" stroke="%23666" stroke-width="3"/><line x1="300" y1="60" x2="300" y2="260" stroke="%23666" stroke-width="3"/><ellipse cx="200" cy="160" rx="35" ry="50" fill="%234a90e2" opacity="0.7"/><text x="200" y="290" font-family="Arial" font-size="16" fill="%23666" text-anchor="middle">Secure Cage</text></svg>');
}

.service-image.multi-cylinder {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 320"><rect fill="%23d8d8d8" width="400" height="320"/><rect fill="%23b8704d" x="0" y="0" width="400" height="320"/><pattern id="brick" x="0" y="0" width="60" height="30" patternUnits="userSpaceOnUse"><rect fill="%23b8704d" width="60" height="30"/><rect fill="%23a0603d" x="0" y="0" width="58" height="28"/><line x1="0" y1="15" x2="60" y2="15" stroke="%23905030" stroke-width="2"/></pattern><rect fill="url(%23brick)" width="400" height="320"/><rect fill="%23333" x="60" y="120" width="280" height="140" rx="8" stroke="%23555" stroke-width="4" fill="none"/><ellipse cx="120" cy="190" rx="25" ry="40" fill="%234a90e2" opacity="0.8"/><ellipse cx="200" cy="190" rx="25" ry="40" fill="%234a90e2" opacity="0.8"/><ellipse cx="280" cy="190" rx="25" ry="40" fill="%23ff6b35" opacity="0.8"/></svg>');
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: #fff;
    z-index: 1;
}

.service-overlay h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #fff;
}

.service-overlay p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 3rem 0;
    background: #1a1a1a;
    color: #fff;
}

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

.contact h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-item i {
    font-size: 1.2rem;
    color: #F97808;
    width: 25px;
}

.contact-item h4 {
    color: #fff;
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.contact-item p {
    color: #ccc;
    font-size: 0.9rem;
}

.contact-map {
    height: 300px;
    border-radius: 6px;
    overflow: hidden;
}

#map {
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background: #144982;
    color: #fff;
    padding: 4.5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 8rem;
    margin-bottom: 3.5rem;
}

.footer-about h3,
.footer-contact h3 {
    color: #fff;
    margin-bottom: 1.8rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-about p {
    color: #b8b8b8;
    line-height: 1.9;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    max-width: 520px;
    font-weight: 400;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 1.05rem;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    padding: 0;
    border-radius: 0;
    transition: all 0.25s ease;
}

.footer-contact-item:hover {
    transform: translateX(4px);
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.footer-contact-item:hover .contact-icon {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-icon i {
    color: #fff;
    font-size: 1.05rem;
}

.footer-contact-item span {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

.footer-bottom p {
    margin: 0;
    font-weight: 400;
}

/* Mobile Navigation */
.nav-menu.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.nav-menu.active li a {
    padding: 1rem 1.2rem;
    border-radius: 8px;
    color: #333;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-height: 44px;
    display: flex;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
}

.nav-menu.active li a:hover {
    background: #144982;
    color: #fff;
    transform: translateX(5px);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-image {
        height: 220px;
    }
    .hero {
        padding: 85px 0 45px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 650px;
        margin: 0 auto;
    }

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

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .brand-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-form {
        max-width: 550px;
        margin: 0 auto;
    }

    .coverage-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .coverage-text h2 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        padding: 80px 0 40px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text h1 .highlight::after {
        height: 2px;
        bottom: 2px;
    }

    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .brand-logo {
        margin-bottom: 0.9rem;
        font-size: 1rem;
        padding: 0.35rem 0.8rem;
    }

    .brand-logo i {
        font-size: 1.3rem;
    }

    .hero-features {
        flex-direction: row;
        justify-content: center;
        gap: 0.8rem;
    }

    .feature-box {
        min-width: 115px;
        padding: 0.8rem 1rem;
    }

    .feature-box strong {
        font-size: 0.85rem;
    }

    .feature-box small {
        font-size: 0.65rem;
    }

    .hero-form {
        padding: 1.4rem;
    }

    .hero-form h3 {
        font-size: 1.3rem;
    }

    .form-icon {
        width: 45px;
        height: 45px;
    }

    .form-icon i {
        font-size: 1.2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .btn-submit {
        padding: 11px 16px;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .coverage-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .coverage-text h2 {
        font-size: 1.9rem;
        text-align: center;
    }

    .coverage-text p {
        text-align: center;
    }

    .coverage-list {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .delivery-badge {
        position: static;
        margin-bottom: 1rem;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .service-image {
        height: 280px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .footer-about p {
        max-width: 100%;
    }

    .about, .products, .contact {
        padding: 2.5rem 0;
    }

    .contact-map {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 75px 0 35px;
    }

    .hero-content {
        gap: 1.5rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .hero-text h1 .highlight::after {
        height: 2px;
        bottom: 2px;
    }

    .hero-text p {
        font-size: 0.85rem;
        margin-bottom: 1.3rem;
    }

    .brand-logo {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
        padding: 0.35rem 0.7rem;
    }

    .brand-logo i {
        font-size: 1.2rem;
    }

    .hero-features {
        gap: 0.7rem;
        flex-direction: column;
    }

    .feature-box {
        min-width: 100%;
        max-width: 280px;
        padding: 0.8rem 0.9rem;
    }

    .feature-box strong {
        font-size: 0.85rem;
    }

    .feature-box small {
        font-size: 0.65rem;
    }

    .hero-form {
        padding: 1.3rem;
    }

    .hero-form h3 {
        font-size: 1.2rem;
    }

    .form-subtitle {
        font-size: 0.8rem;
    }

    .form-response-time {
        font-size: 0.7rem;
        padding: 0.35rem 0.8rem;
    }

    .form-icon {
        width: 42px;
        height: 42px;
    }

    .form-icon i {
        font-size: 1.1rem;
    }

    .btn-submit {
        padding: 11px 15px;
        font-size: 0.9rem;
    }

    .coverage-text h2 {
        font-size: 1.6rem;
    }

    .coverage-list {
        grid-template-columns: 1fr;
    }

    .map-container {
        padding: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.85rem;
    }

    .feature-card {
        padding: 1.2rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 1.3rem;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .product-card {
        padding: 0;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        gap: 3rem;
    }

    .footer-contact-item:hover {
        transform: translateX(0);
    }

    .product-image {
        height: 180px;
    }

    .product-info {
        padding: 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .contact h2 {
        font-size: 1.5rem;
    }

    .contact-item i {
        font-size: 1rem;
    }

    .contact-map {
        height: 200px;
    }

    .footer {
        padding: 1.5rem 0 0.6rem;
    }

    .footer-section h3 {
        font-size: 0.95rem;
    }

    .nav-menu.active {
        padding: 0.5rem 0;
    }

    .nav-menu.active li {
        padding: 0.5rem 1rem;
    }
}

/* Shop Page Styles */
.shop-header {
    background: linear-gradient(135deg, #144982 0%, #1e5a96 100%);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 80px;
}

.shop-header-content {
    text-align: center;
}

.shop-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.shop-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.shop-filters {
    background: #f8f9fa;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.shop-filters.collapsed {
    padding: 1rem 0;
}

.filters-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.filters-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.filter-row {
    display: flex;
    gap: 1rem;
    align-items: end;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    min-width: 200px;
    flex: 1;
}

.filter-group.search-group {
    min-width: 300px;
    flex: 2;
}

.filter-group.price-group {
    min-width: 250px;
}

.filter-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label i {
    color: #144982;
    font-size: 0.9rem;
}

.filter-group input,
.filter-group select {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: #144982;
    box-shadow: 0 0 0 3px rgba(20, 73, 130, 0.1);
}

.search-input-wrapper {
    position: relative;
}

.search-clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: color 0.3s ease;
}

.search-clear:hover {
    color: #666;
    background: #f0f0f0;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-inputs input {
    flex: 1;
    min-width: 100px;
}

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

.filter-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.filter-actions .btn {
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 140px;
    justify-content: center;
    text-decoration: none;
    border: 2px solid transparent;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
}

.filter-actions .btn-primary {
    background: linear-gradient(135deg, #144982 0%, #1e5a96 100%);
    color: white;
    border-color: #144982;
    box-shadow: 0 4px 12px rgba(20, 73, 130, 0.2);
}

.filter-actions .btn-primary:hover {
    background: linear-gradient(135deg, #0d3a6b 0%, #144982 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 73, 130, 0.3);
}

.filter-actions .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(20, 73, 130, 0.3);
}

.filter-actions .btn-secondary {
    background: #f8f9fa;
    color: #6c757d;
    border-color: #dee2e6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.filter-actions .btn-secondary:hover {
    background: #e9ecef;
    color: #495057;
    border-color: #adb5bd;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.btn-outline {
    background: transparent;
    color: #144982;
    border: 2px solid #144982;
    box-shadow: 0 2px 8px rgba(20, 73, 130, 0.1);
}

.btn-outline:hover {
    background: #144982;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(20, 73, 130, 0.2);
}

.btn-outline:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(20, 73, 130, 0.2);
}

/* Icon animations */
.filter-actions .btn i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.filter-actions .btn:hover i {
    transform: scale(1.1);
}

.filter-actions .btn-primary:hover i {
    transform: scale(1.1) rotate(5deg);
}

.btn-outline:hover i {
    transform: scale(1.1) rotate(-5deg);
}

/* Button focus states for accessibility */
.filter-actions .btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(20, 73, 130, 0.25);
}

.filter-actions .btn-secondary:focus {
    box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.25);
}

/* Loading state for apply filters button */
.filter-actions .btn-primary.loading {
    position: relative;
    color: transparent;
}

.filter-actions .btn-primary.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.shop-products {
    padding: 3rem 0;
}

.products-header {
    text-align: center;
    margin-bottom: 2rem;
}

.products-header h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.products-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.products-count {
    color: #666;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.products-count i {
    color: #144982;
}

.active-filters {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filters-label {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.filter-tag {
    background: #144982;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.filter-tag i {
    font-size: 0.75rem;
}

.no-products {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.no-products i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.no-products h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.product-category {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: rgba(20, 73, 130, 0.9);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 500;
}

.product-sku {
    font-size: 0.85rem;
    color: #666;
    margin: 0.5rem 0;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #144982;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #0d3a6b;
    transform: translateY(-2px);
}

/* Active navigation link */
.nav-menu a.active {
    color: #144982;
    font-weight: 600;
}

/* Form enhancements */
.price-calculator {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message {
    animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-submit {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-submit:disabled {
    transform: none;
    opacity: 0.8;
}

/* Form buttons container */
.form-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

/* WhatsApp button gets priority styling */
.form-buttons .btn-whatsapp {
    order: 1;
    font-size: 1.1rem;
    padding: 1.3rem 2rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    border: none !important; /* Remove ugly border */
    position: relative;
}

.form-buttons .btn-submit {
    order: 2;
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    font-size: 0.95rem;
    opacity: 0.9;
    border: 1px solid rgba(108, 117, 125, 0.3);
}

.form-buttons .btn-submit:hover {
    opacity: 1;
    background: linear-gradient(135deg, #495057 0%, #343a40 100%);
}

/* WhatsApp button */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none !important;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    overflow: visible; /* Allow badge to show outside */
    outline: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3), 0 0 0 1px rgba(37, 211, 102, 0.1);
}



.btn-whatsapp::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-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

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

/* WhatsApp icon styling */
.btn-whatsapp i {
    font-size: 1.2rem;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
    animation: whatsappPulse 2s ease-in-out infinite;
}

/* Subtle pulse animation for WhatsApp icon */
@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Remove animation on hover to avoid conflict */
.btn-whatsapp:hover i {
    animation: none;
    transform: scale(1.1);
}

.btn-whatsapp:active {
    transform: translateY(0);
}

.btn-whatsapp i {
    font-size: 1.2rem;
}

/* Mobile responsive form buttons */
@media (max-width: 768px) {
    .form-buttons {
        gap: 1.2rem;
    }

    .form-buttons .btn-whatsapp {
        padding: 1.1rem 1.5rem;
        font-size: 1rem;
    }

    .btn-submit,
    .btn-whatsapp {
        border-radius: 10px;
    }
}

/* Form Validation Styles */
.field-error {
    border: 2px solid #dc3545 !important;
    background-color: rgba(220, 53, 69, 0.05) !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.field-error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.field-error-message::before {
    content: '⚠️';
    font-size: 0.8rem;
}

.validation-summary {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border: 1px solid #f5c6cb;
    border-left: 4px solid #dc3545;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    animation: validationSlideIn 0.3s ease-out;
}

.validation-summary-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.validation-summary-content i {
    color: #dc3545;
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.validation-summary-text strong {
    color: #721c24;
    display: block;
    margin-bottom: 0.5rem;
}

.validation-summary-text p {
    color: #721c24;
    margin: 0;
    font-size: 0.9rem;
}

/* Validation Animations */
@keyframes fieldErrorShake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes validationSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus states for better accessibility */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #144982;
    box-shadow: 0 0 0 0.2rem rgba(20, 73, 130, 0.25);
    outline: none;
}

/* Success state for validated fields */
.field-success {
    border-color: #28a745 !important;
    background-color: rgba(40, 167, 69, 0.05) !important;
}

.field-success:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
}

/* Required field indicator */
.required {
    color: #dc3545;
    font-weight: bold;
}

/* Mobile validation styles */
@media (max-width: 768px) {
    .validation-summary {
        margin-bottom: 1rem;
        padding: 0.8rem;
    }

    .validation-summary-content {
        gap: 0.8rem;
    }

    .field-error-message {
        font-size: 0.8rem;
    }
}

.btn-submit .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Form validation styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

/* Success state for form fields */
.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: #27ae60 !important;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

/* Rotating Text Animation */
.rotating-text-container {
    display: inline-block;
    position: relative;
    height: 1.2em;
    overflow: visible;
    vertical-align: top;
    margin-right: 0.5em;
    min-width: 280px;
    width: auto;
}

.rotating-text {
    display: inline-block;
    color: #ff6b35;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    animation: rotateText 8s infinite;
    opacity: 0;
    transform: translateY(100%);
    width: auto;
    min-width: 280px;
}

.main-title {
    display: inline-block;
    vertical-align: top;
}

/* Ensure hero h1 has enough space */
.hero-text h1 {
    overflow: visible;
    white-space: normal;
    line-height: 1.2;
}

.rotating-text.active {
    opacity: 1;
    transform: translateY(0);
    animation: showText 2s ease-in-out;
}

@keyframes showText {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    10%, 90% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-100%);
    }
}

@keyframes rotateText {
    0%, 25% {
        opacity: 1;
        transform: translateY(0);
    }
    30%, 100% {
        opacity: 0;
        transform: translateY(-100%);
    }
}

/* Responsive adjustments for rotating text */
@media (max-width: 768px) {
    .rotating-text-container {
        height: 1.1em;
        min-width: 250px;
        margin-right: 0.3em;
    }

    .rotating-text {
        font-size: 0.95em;
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .rotating-text-container {
        height: 1em;
        display: block;
        margin-bottom: 0.3em;
        margin-right: 0;
        min-width: auto;
        width: 100%;
    }

    .rotating-text {
        font-size: 0.9em;
        position: relative;
        display: block;
        text-align: center;
    }

    .main-title {
        display: block;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .shop-header {
        padding: 3rem 0 1.5rem;
    }

    .shop-header h1 {
        font-size: 2rem;
    }

    .filter-row {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        min-width: auto;
    }

    .filter-group.search-group,
    .filter-group.price-group {
        min-width: auto;
    }

    .price-inputs {
        flex-direction: column;
        gap: 0.75rem;
    }

    .price-separator {
        text-align: center;
    }

    .filter-actions {
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
    }

    .filter-actions .btn {
        width: 100%;
        justify-content: center;
        min-width: auto;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .products-header h2 {
        font-size: 1.5rem;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

/* Johannesburg Landing Page Styles */
.johannesburg-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
}

.johannesburg-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.johannesburg-features {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    font-weight: 500;
}

.feature-highlight i {
    color: #F97808;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.johannesburg-areas {
    padding: 4rem 0;
    background: #f8f9fa;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.area-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.area-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.area-card i {
    color: #F97808;
}

.pricing-johannesburg {
    padding: 4rem 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.price-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.price-card.featured {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: scale(1.05);
}

.price-card:hover {
    border-color: #F97808;
    transform: translateY(-5px);
}

.price-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #F97808;
    margin: 1rem 0;
}

.price-card.featured .price {
    color: white;
}

.why-choose-johannesburg {
    padding: 4rem 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

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

.benefit i {
    font-size: 3rem;
    color: #F97808;
    margin-bottom: 1rem;
}

.quick-order-johannesburg {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
}

.order-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.order-form select,
.order-form input,
.order-form textarea {
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.order-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 100px;
}

/* Mobile Responsive for Johannesburg Page */
@media (max-width: 768px) {
    .johannesburg-hero h1 {
        font-size: 2rem;
    }

    .johannesburg-features {
        flex-direction: column;
        gap: 1rem;
    }

    .areas-grid,
    .pricing-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
