/*
Theme Name: Reload Pods
Theme URI: http://example.com/reload-pods
Author: Reload
Author URI: http://example.com/reload
Description: A base theme for Reload Pods.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: reloadpods
*/

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    padding: 0;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

/* Navigation Styles */
.nav-link, 
.nav-menu ul li a {
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-menu ul li a:hover {
    color: var(--primary);
}

:root {
    --primary: #ef4717;
    --dark: #333333;
    --light: #f8fafc;
    --gray: #64748b;
    --border-radius: 2rem;
    --container-width: 1280px;
}

/* Contact Form 7 Button Fixes */
input.wpcf7-submit.reload-submit {
    width: 100% !important;
    height: auto !important;
    padding: 1.25rem 2rem !important;
    background-color: #ef4717 !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    border-radius: 0.75rem !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 20px 25px -5px rgba(239, 71, 23, 0.2) !important;
    display: block !important;
    -webkit-appearance: none !important;
}

input.wpcf7-submit.reload-submit:hover {
    transform: scale(1.02) !important;
    background-color: #d13d14 !important;
    opacity: 1 !important;
}

/* Reload Submit Class Styling */
.reload-submit {
    width: 100% !important;
    height: auto !important;
    padding: 1.25rem 2rem !important;
    background-color: #ef4717 !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    border-radius: 0.75rem !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 20px 25px -5px rgba(239, 71, 23, 0.2) !important;
    display: block !important;
    -webkit-appearance: none !important;
    text-align: center !important;
}

.reload-submit:hover {
    transform: scale(1.02) !important;
    background-color: #d13d14 !important;
    opacity: 1 !important;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 100px 0;
}

h1, h2, h3, h4 {
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--dark);
    margin: 0;
}

h1 { font-size: 4rem; }
h2 { font-size: 3rem; }
h3 { font-size: 1.5rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
}

.text-accent {
    color: var(--primary);
    font-style: italic;
    font-weight: inherit;
}

.text-muted {
    color: var(--gray);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: #d13d14;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(239, 71, 23, 0.2);
}

.btn-secondary {
    background-color: #fff;
    color: var(--dark);
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    border-color: var(--primary);
    background-color: var(--light);
}

.card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
}

.card:hover {
    border-color: rgba(239, 71, 23, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.5rem 1.25rem;
    background: rgba(239, 71, 23, 0.1);
    color: var(--primary);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

/* Service Cards */
.service-icon {
    width: 60px; 
    height: 60px; 
    background: rgba(239, 71, 23, 0.1); 
    border-radius: 1rem; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--primary); 
    margin-bottom: 2rem;
}

.service-icon span {
    font-size: 2rem;
}

/* Utilities */
.shadow-glow {
    box-shadow: 0 40px 100px rgba(0,0,0,0.08);
}

.hero {
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 150px;
    padding-bottom: 100px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.9));
}

.hero-content {
    position: relative;
    z-index: 10;
    color: #fff;
    text-align: center;
}

.hero h1 {
    color: #fff;
    margin-bottom: 2rem;
}

.hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
