/*
Theme Name: TAG Paintball
Theme URI: https://tacticalassaultgames.org
Author: Tactical Assault Games
Description: Complete paintball experience theme - Final Version
Version: 3.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tag-paintball
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

/* Import Chinese Rocks Font */
@font-face {
    font-family: 'Chinese Rocks';
    src: url('fonts/chinese-rocks.woff2') format('woff2'),
         url('fonts/chinese-rocks.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
    --red: #ff3333;
    --red-dark: #cc2929;
    --red-light: #ff5555;
    --black: #121212;
    --dark-gray: #1a1a1a;
    --light-gray: #333333;
    --yellow: #ffe44d;
    --yellow-dark: #e6c83d;
    --white: #ffffff;
    --green: #28a745;
    --blue: #007bff;
    --orange: #fd7e14;
    --gray: #6c757d;
    
    /* Layout */
    --container-max-width: 1200px;
    --section-padding: 80px;
    --border-radius: 8px;
    
    /* Typography */
    --font-primary: 'Roboto', sans-serif;
    --font-display: 'Chinese Rocks', 'Roboto', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-small: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-large: 0 8px 16px rgba(0, 0, 0, 0.2);
    --shadow-hover: 0 12px 24px rgba(0, 0, 0, 0.3);
}

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

*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--yellow);
    text-decoration: none;
    transition: color var(--transition-normal);
}

a:hover {
    color: var(--yellow-dark);
}

/* Loading States */
.ajax-loading::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--yellow), var(--red));
    background-size: 200% 100%;
    animation: loading 1s infinite;
    z-index: 9999;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Header Styles */
header {
    background-color: rgba(18, 18, 18, 0.95);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

header.scrolled {
    background-color: rgba(18, 18, 18, 0.98);
    padding: 10px 0;
    box-shadow: var(--shadow-medium);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    transition: height var(--transition-normal);
}

header.scrolled .logo img {
    height: 40px;
}

.logo a {
    display: block;
}

.menu-btn {
    display: block;
    cursor: pointer;
    font-size: 24px;
    color: var(--white);
    background: none;
    border: none;
    padding: 10px;
    transition: color var(--transition-normal);
    border-radius: 4px;
}

.menu-btn:hover,
.menu-btn.active {
    color: var(--red);
    background-color: rgba(255, 255, 255, 0.1);
}

.menu {
    position: fixed;
    top: 80px;
    right: -100%;
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(15px);
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 80px);
    transition: right var(--transition-normal);
    padding: 30px 20px;
    overflow-y: auto;
    box-shadow: var(--shadow-large);
}

.menu.active {
    right: 0;
}

.menu ul {
    list-style: none;
}

.menu ul li {
    margin: 20px 0;
}

.menu ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid transparent;
}

.menu ul li a:hover {
    color: var(--red);
    border-bottom-color: var(--red);
    padding-left: 10px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Paint Splatter Effects */
.paint-splatter {
    position: absolute;
    z-index: 1;
    opacity: 0.6;
    pointer-events: none;
    transition: transform 0.1s ease-out;
}

.paint-red {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
    background-image: url('images/paint-red.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.paint-yellow {
    width: 400px;
    height: 400px;
    bottom: -15%;
    right: -15%;
    background-image: url('images/paint-yellow.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.paint-orange {
    width: 350px;
    height: 350px;
    bottom: 20%;
    left: 5%;
    background-image: url('images/paint-orange.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.1;
    font-family: var(--font-display);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
    animation: fadeInUp 1s ease-out;
}

.hero h1 span {
    color: var(--yellow);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out 0.2s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.cta-buttons {
    animation: fadeInUp 1s ease-out 0.4s both;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-promo {
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.promo-badge-large {
    background: linear-gradient(135deg, var(--red), var(--red-light));
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    border: 2px solid var(--yellow);
    animation: pulse 2s infinite;
    font-size: 1.1rem;
    box-shadow: var(--shadow-medium);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-promo.urgent .promo-badge-large {
    animation: urgentPulse 1s infinite;
}

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

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: var(--shadow-medium);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: var(--shadow-large);
    }
}

@keyframes urgentPulse {
    0%, 100% { 
        transform: scale(1); 
        background: linear-gradient(135deg, var(--red), var(--red-light));
    }
    50% { 
        transform: scale(1.1); 
        background: linear-gradient(135deg, var(--red-light), #ff7777);
    }
}

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

/* Button Styles */
.btn {
    display: inline-block;
    background-color: var(--red);
    color: var(--white);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-normal);
    margin: 8px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-small);
    font-family: var(--font-primary);
}

.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 var(--transition-slow);
}

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

.btn:hover {
    background-color: var(--red-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

.btn.outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn.outline:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

.btn-primary {
    background-color: var(--red);
}

.btn-primary:hover {
    background-color: var(--red-light);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--yellow);
    color: var(--yellow);
}

.btn-secondary:hover {
    background-color: var(--yellow);
    color: var(--black);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn .btn-loading {
    display: none;
}

.btn .btn-text {
    display: inline;
}

/* Section Styles */
.section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.8rem;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-family: var(--font-display);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: var(--white);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--red);
    border-radius: 2px;
}

.section-title h3 {
    font-size: 2.2rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--yellow);
    font-family: var(--font-display);
}

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

/* Services Grid - Main Focus */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: linear-gradient(145deg, #1e1e1e 0%, #2a2a2a 50%, #1a1a1a 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid transparent;
    background-clip: padding-box;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, var(--red), var(--yellow), var(--red));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 0;
}

.service-card.featured::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    transform: scale(1.05);
    box-shadow: 
        0 25px 50px rgba(255, 228, 77, 0.3),
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.service-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, var(--yellow), #ffd700);
    color: var(--black);
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 
        0 8px 16px rgba(255, 228, 77, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: pulse 3s infinite;
}

.service-image {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.15);
}

.service-content {
    padding: 45px;
    position: relative;
    z-index: 5;
}

.service-content h3 {
    font-size: 2.8rem;
    font-family: var(--font-display);
    color: var(--yellow);
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.service-schedule {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 35px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--red), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-pricing {
    margin-bottom: 40px;
    text-align: center;
    padding: 35px 30px;
    background: linear-gradient(145deg, 
        rgba(255, 51, 51, 0.15) 0%, 
        rgba(255, 228, 77, 0.15) 50%,
        rgba(255, 51, 51, 0.15) 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 228, 77, 0.4);
    position: relative;
    overflow: hidden;
}

.service-pricing::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 228, 77, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
    z-index: 0;
}

.service-pricing > * {
    position: relative;
    z-index: 1;
}

.price-main {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--white);
    font-family: var(--font-display);
    line-height: 0.9;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    margin-bottom: 10px;
}

.price-original {
    margin-bottom: 15px;
}

.price-original del {
    color: #999;
    font-size: 1.5rem;
    font-weight: 500;
}

.price-save {
    background: linear-gradient(135deg, var(--red), #ff6666);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    margin-left: 15px;
    animation: urgentPulse 2s infinite;
    box-shadow: 0 4px 8px rgba(255, 51, 51, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-note {
    font-size: 1.2rem;
    color: var(--yellow);
    margin-top: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.detail-item {
    text-align: center;
    padding: 25px 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 228, 77, 0.1), transparent);
    transition: left var(--transition-slow);
}

.detail-item:hover::before {
    left: 100%;
}

.detail-item:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.detail-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.detail-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-features {
    list-style: none;
    margin-bottom: 45px;
    padding: 35px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-features li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 18px;
    color: #e8e8e8;
    line-height: 1.6;
    font-size: 1.1rem;
    font-weight: 400;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--yellow);
    font-weight: 900;
    font-size: 1.4rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.service-actions .btn {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    text-align: center;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.service-actions .btn-primary {
    background: linear-gradient(135deg, var(--red), #ff6666);
    box-shadow: 
        0 8px 16px rgba(255, 51, 51, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-actions .btn-secondary {
    background: linear-gradient(135deg, transparent, rgba(255, 228, 77, 0.1));
    border: 2px solid var(--yellow);
    color: var(--yellow);
    box-shadow: 
        0 8px 16px rgba(255, 228, 77, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Promotional Notice */
.promo-notice {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--red), var(--red-light));
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    border: 3px solid var(--yellow);
    box-shadow: var(--shadow-large);
    position: relative;
    overflow: hidden;
}

.promo-notice::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 228, 77, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.promo-content h4 {
    font-size: 2rem;
    font-family: var(--font-display);
    color: var(--yellow);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.promo-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.promo-countdown {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
    border: 2px solid var(--yellow);
}

/* About Section */
.section-dark {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #0a0a0a 100%);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/paint-splatter-large.png');
    background-size: 400px;
    background-repeat: no-repeat;
    background-position: top right;
    opacity: 0.03;
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    font-family: var(--font-display);
    color: var(--yellow);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #dddddd;
}

.about-features {
    display: grid;
    gap: 25px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
}

.about-feature:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: var(--shadow-small);
}

.about-feature .feature-icon {
    font-size: 3rem;
    min-width: 60px;
    text-align: center;
}

.feature-content h4 {
    color: var(--yellow);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: var(--font-display);
}

.feature-content p {
    color: #ccc;
    margin: 0;
    line-height: 1.5;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-large);
    border: 3px solid var(--yellow);
}

/* Instagram Placeholder */
.instagram-placeholder {
    background: linear-gradient(135deg, var(--dark-gray), #2a2a2a);
    border-radius: 15px;
    padding: 80px 40px;
    text-align: center;
    border: 2px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.instagram-placeholder::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 228, 77, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.instagram-icon {
    font-size: 5rem;
    margin-bottom: 25px;
    opacity: 0.7;
}

.instagram-content h3 {
    font-size: 2rem;
    color: var(--yellow);
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.instagram-content p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.contact-form {
    background: linear-gradient(135deg, var(--dark-gray), #2a2a2a);
    border: 2px solid var(--light-gray);
    padding: 40px;
    border-radius: var(--border-radius);
    position: relative;
    box-shadow: var(--shadow-medium);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background-image: url('images/paint-splatter-large.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

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

.form-group {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--yellow);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    background-color: var(--black);
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    color: var(--white);
    font-size: 1rem;
    transition: all var(--transition-normal);
    font-family: var(--font-primary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(255, 228, 77, 0.2);
}

.form-group textarea {
    height: 140px;
    resize: vertical;
    line-height: 1.5;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Success and Error Messages */
.success-message {
    background: linear-gradient(135deg, var(--green), #34ce57);
    color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
    box-shadow: var(--shadow-small);
}

.error-message {
    background: linear-gradient(135deg, var(--red), var(--red-light));
    color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
    box-shadow: var(--shadow-small);
}

.form-error {
    background: linear-gradient(135deg, var(--red), var(--red-light));
    color: white;
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.error {
    border-color: var(--red) !important;
    box-shadow: 0 0 0 3px rgba(255, 51, 51, 0.2) !important;
}

/* Contact Info */
.contact-info {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: var(--shadow-small);
}

.contact-icon {
    margin-right: 20px;
    min-width: 35px;
    color: var(--red);
    font-size: 24px;
    margin-top: 5px;
}

.contact-item h4 {
    color: var(--yellow);
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-item p,
.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition-normal);
    font-size: 1rem;
}

.contact-item a:hover {
    color: var(--yellow);
}

.contact-item small {
    display: block;
    color: #ccc;
    margin-top: 6px;
    font-size: 0.9rem;
}

/* Map Container */
.map-container {
    margin-top: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid var(--light-gray);
    box-shadow: var(--shadow-small);
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: none;
}

.map-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--yellow);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.map-link:hover {
    color: var(--white);
}

/* Operating Hours */
.hours-list {
    margin-top: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.hours-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.hours-item span:first-child {
    font-weight: 500;
}

/* Social Media */
.social-media {
    margin-top: 40px;
}

.social-media h4 {
    color: var(--yellow);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--white);
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-small);
}

.social-icon:hover {
    background-color: var(--red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.social-icon.facebook:hover { background-color: #1877f2; }
.social-icon.instagram:hover { background-color: #e4405f; }
.social-icon.twitter:hover { background-color: #1da1f2; }
.social-icon.youtube:hover { background-color: #ff0000; }

/* Footer */
footer {
    background-color: var(--dark-gray);
    padding: 60px 0 30px;
    text-align: center;
    border-top: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: url('images/paint-footer.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.footer-logo {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo img {
    height: 70px;
    width: auto;
}

.footer-nav {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
}

.footer-nav ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition-normal);
    font-weight: 500;
    font-size: 1rem;
}

.footer-nav ul li a:hover {
    color: var(--red);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.copyright {
    font-size: 0.95rem;
    color: #999;
    margin-top: 30px;
    position: relative;
    z-index: 1;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* WooCommerce Integration */
.woocommerce-page {
    background-color: var(--black);
    color: var(--white);
}

.woocommerce .price {
    color: var(--yellow);
    font-weight: bold;
    font-size: 1.2rem;
}

.woocommerce .price del {
    color: #999;
}

.woocommerce .button {
    background-color: var(--red);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-small);
}

.woocommerce .button:hover {
    background-color: var(--red-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.woocommerce form .form-row input,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    background-color: var(--dark-gray);
    border: 2px solid var(--light-gray);
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 12px 15px;
}

.woocommerce form .form-row input:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(255, 228, 77, 0.2);
}

/* Product Page Styles */
.product-page {
    padding: 120px 0 80px;
    background-color: var(--black);
    color: var(--white);
    min-height: 100vh;
}

.product-container {
    display: grid;
    gap: 50px;
    margin-bottom: 60px;
}

.product-images img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    border: 1px solid var(--light-gray);
    box-shadow: var(--shadow-medium);
}

.product-title {
    font-size: 2.8rem;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--yellow);
    font-family: var(--font-display);
    line-height: 1.1;
}

.product-price {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 25px;
    font-family: var(--font-display);
}

.product-price .woocommerce-Price-amount {
    color: var(--yellow);
}

.product-description {
    margin-bottom: 35px;
    line-height: 1.7;
    font-size: 1.1rem;
    color: #dddddd;
}

.product-form {
    margin-bottom: 50px;
}

.product-form .cart {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.product-form input[type="number"] {
    width: 100px;
    padding: 12px;
    background-color: var(--dark-gray);
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    color: var(--white);
    text-align: center;
    font-size: 1rem;
}

.product-form .single_add_to_cart_button {
    background-color: var(--red);
    color: var(--white);
    padding: 15px 35px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 1.1rem;
    box-shadow: var(--shadow-small);
}

.product-form .single_add_to_cart_button:hover {
    background-color: var(--red-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.product-info {
    margin-bottom: 50px;
}

.product-info h3 {
    color: var(--yellow);
    margin-bottom: 20px;
    margin-top: 35px;
    font-size: 1.6rem;
    font-family: var(--font-display);
}

.product-info ul {
    list-style: none;
    padding-left: 0;
}

.product-info li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #dddddd;
    line-height: 1.5;
}

.product-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: bold;
    font-size: 1.1rem;
}

.related-info {
    text-align: center;
    padding: 50px;
    background-color: var(--dark-gray);
    border-radius: var(--border-radius);
    border: 1px solid var(--light-gray);
    box-shadow: var(--shadow-medium);
}

.contact-cta h3 {
    color: var(--yellow);
    margin-bottom: 20px;
    font-size: 2rem;
    font-family: var(--font-display);
}

.contact-cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #dddddd;
}

/* Page Template Styles */
.page-content {
    padding: 120px 0 80px;
    background-color: var(--black);
    color: var(--white);
    min-height: 100vh;
}

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

.page-title {
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--yellow);
    font-family: var(--font-display);
}

.page-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #dddddd;
}

.page-content-wrapper h2,
.page-content-wrapper h3,
.page-content-wrapper h4 {
    color: var(--yellow);
    margin-top: 40px;
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.page-content-wrapper h2 {
    font-size: 2.2rem;
}

.page-content-wrapper h3 {
    font-size: 1.8rem;
}

.page-content-wrapper p {
    margin-bottom: 25px;
}

.page-content-wrapper ul,
.page-content-wrapper ol {
    margin-bottom: 25px;
    padding-left: 35px;
}

.page-content-wrapper li {
    margin-bottom: 12px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        margin: 8px 0;
    }
    
    .services-grid {
        gap: 30px;
    }
    
    .service-content {
        padding: 30px 25px;
    }
    
    .service-content h3 {
        font-size: 1.8rem;
    }
    
    .price-main {
        font-size: 2.8rem;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-actions {
        flex-direction: column;
    }
    
    .service-actions .btn {
        min-width: auto;
    }
    
    .promo-notice {
        padding: 30px 20px;
    }
    
    .promo-content h4 {
        font-size: 1.5rem;
    }
    
    .about-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 4.5rem;
    }
    
    .hero p {
        font-size: 1.4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
    
    .service-card.featured {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-content {
        grid-template-columns: 1.2fr 1fr;
    }
    
    .detail-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .menu-btn {
        display: none;
    }
    
    .menu {
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        padding: 0;
        backdrop-filter: none;
    }
    
    .menu ul {
        display: flex;
        gap: 30px;
    }
    
    .menu ul li {
        margin: 0;
    }
    
    .menu ul li a {
        font-size: 16px;
        padding: 10px 0;
        border-bottom: 2px solid transparent;
    }
    
    .menu ul li a:hover {
        border-bottom-color: var(--red);
        padding-left: 0;
    }
    
    .contact-container {
        grid-template-columns: 1.5fr 1fr;
    }
    
    .product-container {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 1200px;
    }
    
    .service-card.featured {
        grid-column: auto;
        max-width: none;
    }
    
    .about-content {
        grid-template-columns: 1.5fr 1fr;
        gap: 80px;
    }
    
    .contact-info {
        margin-top: 0;
    }
    
    .menu ul {
        gap: 40px;
    }
}

@media (min-width: 1200px) {
    .hero h1 {
        font-size: 5rem;
    }
    
    .section-title h2 {
        font-size: 3.2rem;
    }
    
    .container {
        padding: 0 30px;
    }
}

/* Accessibility and Performance */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero {
        background-attachment: scroll;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --black: #000000;
        --dark-gray: #0a0a0a;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --light-gray: #555555;
    }
    
    .btn {
        border: 2px solid currentColor;
    }
}

/* Print Styles */
@media print {
    .paint-splatter,
    .menu-btn,
    .menu,
    .btn,
    .hero-promo {
        display: none !important;
    }
    
    body {
        background-color: white !important;
        color: black !important;
    }
    
    .hero {
        background: none !important;
        color: black !important;
        height: auto !important;
        padding: 40px 0 !important;
    }
    
    .section {
        page-break-inside: avoid;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}

/* Loading states for images */
img {
    transition: opacity var(--transition-normal);
}

img[data-src] {
    opacity: 0;
}

img.lazy {
    opacity: 0;
}

img.loaded {
    opacity: 1;
}

/* Focus states for accessibility */
button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
    outline: 2px solid var(--yellow);
    outline-offset: 2px;
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.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;
}