:root {
    --primary: #F4B449;
    --primary-dark: #d99c37;
    --dark: #2D2D2D;
    --darker: #1A1A1A;
    --text: #4A4A4A;
    --text-light: #737373;
    --light: #FFFFFF;
    --background: #FAFAFA;
    --surface: #FFFFFF;
    --border: #E5E7EB;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    color: var(--darker);
    line-height: 1.2;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

.text-accent {
    color: var(--primary);
}

/* Utilities */
.opacity-0 { opacity: 0; }
.section { padding: 6rem 0; }

/* Buttons */
.btn-primary, .btn-primary-sm, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--darker);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary-sm {
    background-color: var(--primary);
    color: var(--darker);
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
}

.btn-primary-sm:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--surface);
    color: var(--darker);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--darker);
    letter-spacing: -0.5px;
}

.logo i {
    color: var(--primary);
    width: 28px;
    height: 28px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a:not(.btn-primary-sm) {
    font-weight: 500;
    color: var(--text);
    position: relative;
}

.nav-links a:not(.btn-primary-sm):hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.2) 100%),
                url('assets/images/hero.png') center/cover no-repeat;
    z-index: -1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-text {
    max-width: 650px;
}

.hero-text h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    background: var(--surface);
    padding: 1.5rem 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    max-width: max-content;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.badge i {
    color: var(--primary);
}

/* Services */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--surface);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 0;
    background: var(--primary);
    transition: all 0.4s ease;
    z-index: -1;
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.service-card:hover::before {
    height: 100%;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #fefce8;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
}

/* Split Section */
.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.image-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    color: var(--light);
    padding: 1.5rem 2rem;
    border-radius: 16px;
}

.image-overlay h3 {
    color: var(--primary);
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
}

.split-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.split-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    font-size: 1.1rem;
}

.feature-list i {
    color: var(--primary);
    background: rgba(244, 180, 73, 0.2);
    padding: 4px;
    border-radius: 50%;
}

/* CTA Section */
.cta-section {
    background: var(--dark);
    color: var(--light);
    text-align: center;
    padding: 8rem 0;
}

.cta-container h2 {
    color: var(--light);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.cta-container p {
    font-size: 1.2rem;
    color: #a3a3a3;
    margin-bottom: 3rem;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: var(--surface);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
    text-align: left;
    color: var(--darker);
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--background);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(244, 180, 73, 0.2);
}

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

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
    accent-color: var(--primary);
    cursor: pointer;
}

.error-msg {
    color: #ef4444;
    font-size: 0.875rem;
    display: block;
    margin-top: 0.25rem;
}

.form-success:not(:empty) {
    background: #ecfdf5;
    color: #065f46;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #10b981;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.form-error:not(:empty) {
    background: #fef2f2;
    color: #991b1b;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #ef4444;
    margin-bottom: 1rem;
    text-align: center;
}

/* Footer */
footer {
    background: #171717;
    color: var(--light);
    padding: 4rem 0 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    padding-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--light);
}

.footer-logo i {
    color: var(--primary);
}

.footer-details {
    color: #737373;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* ArrowHit Agency Branding Strip */
.arrowhit-strip {
    background: #0a0a0a;             /* Deepest black for contrast */
    padding: 1.25rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    width: 100%;
}
.arrowhit-strip a {
    font-size: 0.9rem;
    color: #737373;                  /* Subtle grey */
    display: inline-flex;            /* Centers icon/text precisely */
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;           /* Removes default underline */
}
.arrowhit-strip a span {
    color: var(--light, #ffffff);    /* Default site light color fallback */
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}
.arrowhit-strip a:hover span {
    color: #df5826;                  /* ArrowHit Brand Orange */
}

/* Animations */
.slide-up {
    transform: translateY(40px);
}

.slide-up-scroll {
    transform: translateY(40px);
}

.scale-up-scroll {
    transform: scale(0.95);
}

.slide-right-scroll {
    transform: translateX(-40px);
}

.slide-left-scroll {
    transform: translateX(40px);
}

.animate {
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translate(0) scale(1);
    }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Responsive */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .hero-text h1 { font-size: 3.5rem; }
    .split-container { grid-template-columns: 1fr; gap: 3rem; }
    .split-image { order: 2; }
    .split-content { order: 1; }
    .hero { min-height: auto; padding-top: 140px; }
}

@media (max-width: 600px) {
    .hero-text h1 { font-size: 2.8rem; }
    .hero-badges { padding: 1rem 1.5rem; }
    .section-header h2 { font-size: 2.5rem; }
    .contact-form { padding: 1.5rem; }
    .form-grid { grid-template-columns: 1fr; gap: 0; }
}
