/* BrandHack.ai Custom CSS - Matching Original Design */

/* ============================================
   GLOBAL STYLES & COLORS
   ============================================ */

/* Full Width Layout */
.page-template-page-template-blank #main-content .container,
.et_full_width_page #main-content .container,
#main-content .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
}

.et_pb_section {
    padding: 0 !important;
}

#sidebar {
    display: none !important;
}

.et_right_sidebar #left-area,
.et_left_sidebar #left-area {
    width: 100% !important;
}

#main-content {
    padding-top: 0 !important;
}

.page-template-page-template-blank #page-container #main-content {
    padding-top: 0 !important;
}

/* Hide page title */
.et_pb_pagebuilder_layout .entry-title,
.page .entry-title {
    display: none !important;
}
:root {
    --primary-bg: #0d0d0d;
    --secondary-bg: #1a1a1a;
    --card-bg: #1a1a1a;
    --accent-orange: #E8941C;
    --accent-green: #4CAF50;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --text-light-gray: #888888;
}

body {
    background-color: var(--primary-bg) !important;
    color: var(--text-white) !important;
    font-family: 'Poppins', sans-serif !important;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
#main-header,
.et-fixed-header#main-header {
    background-color: var(--primary-bg) !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

#top-menu li a,
.et_mobile_menu li a {
    color: var(--text-white) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

#top-menu li a:hover,
#top-menu li.current-menu-item a {
    color: var(--accent-orange) !important;
    opacity: 1;
}

/* Book a Call Button in Header */
.et_pb_button,
#top-menu li.menu-item-type-custom a[href*="book"],
.menu-item a[href*="Book"] {
    background-color: var(--accent-orange) !important;
    color: var(--primary-bg) !important;
    border-radius: 25px !important;
    padding: 10px 25px !important;
    font-weight: 600 !important;
    border: none !important;
}

.et_pb_button:hover {
    background-color: #d4820f !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section,
.et_pb_section.hero {
    background-color: var(--primary-bg) !important;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0 !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13,13,13,0.9) 0%, rgba(13,13,13,0.7) 100%);
}

.hero-title {
    font-size: 48px !important;
    font-weight: 700 !important;
    color: var(--text-white) !important;
    line-height: 1.2 !important;
}

.hero-title .highlight {
    color: var(--accent-orange) !important;
}

.hero-subtitle {
    color: var(--accent-green) !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
}

/* ============================================
   SECTION TITLES
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-white) !important;
}

.section-title {
    font-size: 42px !important;
    font-weight: 700 !important;
    color: var(--text-white) !important;
    margin-bottom: 40px !important;
}

.section-subtitle {
    color: var(--accent-green) !important;
    font-size: 20px !important;
    font-weight: 600 !important;
}

/* Orange Script Title (Hack... Your Growth) */
.script-title {
    font-family: 'Dancing Script', cursive !important;
    color: var(--accent-orange) !important;
    font-size: 48px !important;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.et_pb_section {
    background-color: var(--primary-bg) !important;
}

.et_pb_row {
    max-width: 1200px !important;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card,
.et_pb_blurb {
    background-color: var(--card-bg) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 10px !important;
    padding: 30px !important;
    transition: all 0.3s ease !important;
}

.service-card:hover,
.et_pb_blurb:hover {
    border-color: var(--accent-orange) !important;
    transform: translateY(-5px);
}

.service-card h4,
.et_pb_blurb h4 {
    color: var(--text-white) !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
}

.service-card p,
.et_pb_blurb p {
    color: var(--text-gray) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

.service-card a,
.et_pb_blurb a {
    color: var(--accent-orange) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

/* ============================================
   WHO WE ARE SECTION
   ============================================ */
.who-we-are-card {
    background-color: var(--card-bg) !important;
    border-radius: 10px !important;
    padding: 40px 30px !important;
    height: 100%;
}

.who-we-are-card h3 {
    color: var(--accent-green) !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
}

.who-we-are-card p {
    color: var(--text-gray) !important;
    line-height: 1.7 !important;
}

.who-we-are-card ul {
    list-style: none !important;
    padding: 0 !important;
}

.who-we-are-card ul li {
    color: var(--text-gray) !important;
    padding-left: 25px !important;
    position: relative !important;
    margin-bottom: 10px !important;
}

.who-we-are-card ul li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
}

/* ============================================
   WHAT WE DO SECTION
   ============================================ */
.what-we-do-card {
    background-color: var(--card-bg) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

.what-we-do-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(232, 148, 28, 0.2);
}

.what-we-do-card img {
    border: 3px solid var(--accent-orange) !important;
    border-radius: 10px !important;
}

.what-we-do-card h4 {
    color: var(--text-white) !important;
    font-size: 18px !important;
    font-weight: 600 !important;
}

.what-we-do-card .discover-more {
    color: var(--accent-orange) !important;
    font-weight: 600 !important;
}

/* ============================================
   HOW WE UNLOCK AI VALUE
   ============================================ */
.unlock-ai-card {
    background-color: var(--card-bg) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 10px !important;
    padding: 30px !important;
    text-align: center !important;
}

.unlock-ai-card .icon {
    color: var(--accent-orange) !important;
    font-size: 48px !important;
    margin-bottom: 20px !important;
}

.unlock-ai-card h4 {
    color: var(--text-white) !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
}

.unlock-ai-card p {
    color: var(--text-gray) !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background-color: var(--primary-bg) !important;
    padding: 80px 0 !important;
}

.testimonial-card {
    background-color: var(--card-bg) !important;
    border-radius: 15px !important;
    padding: 40px !important;
}

.testimonial-card blockquote {
    color: var(--text-white) !important;
    font-style: italic !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
    border-left: 3px solid var(--accent-orange) !important;
    padding-left: 20px !important;
}

.testimonial-author {
    color: var(--text-white) !important;
    font-weight: 600 !important;
}

.testimonial-title {
    color: var(--text-gray) !important;
    font-size: 14px !important;
}

/* ============================================
   FOOTER
   ============================================ */
#main-footer,
.et_pb_footer {
    background-color: var(--primary-bg) !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
}

#footer-info,
.footer-widget {
    color: var(--text-gray) !important;
}

#footer-info a,
.footer-widget a {
    color: var(--accent-orange) !important;
}

/* ============================================
   CONTACT FORM STYLING
   ============================================ */
.et_pb_contact_form input,
.et_pb_contact_form textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    background-color: var(--card-bg) !important;
    border: 2px dashed var(--accent-orange) !important;
    border-radius: 8px !important;
    color: var(--text-white) !important;
    padding: 15px !important;
}

.et_pb_contact_form input::placeholder,
.et_pb_contact_form textarea::placeholder,
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: var(--text-gray) !important;
}

.et_pb_contact_form .et_pb_contact_submit,
.wpcf7-form input[type="submit"] {
    background-color: var(--accent-orange) !important;
    color: var(--primary-bg) !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 15px 40px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.et_pb_contact_form .et_pb_contact_submit:hover,
.wpcf7-form input[type="submit"]:hover {
    background-color: #d4820f !important;
}

/* ============================================
   WHITE PAPER PAGE FORM
   ============================================ */
.white-paper-form {
    background-color: var(--card-bg) !important;
    border-radius: 15px !important;
    padding: 40px !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

.white-paper-form h2 {
    color: var(--text-white) !important;
    text-align: center !important;
    margin-bottom: 30px !important;
}

.white-paper-form label {
    color: var(--text-white) !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
    display: block !important;
}

/* ============================================
   BUTTONS
   ============================================ */
.et_pb_button,
.button,
a.button {
    background-color: var(--accent-orange) !important;
    color: var(--primary-bg) !important;
    border-radius: 25px !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    border: 2px solid var(--accent-orange) !important;
    transition: all 0.3s ease !important;
}

.et_pb_button:hover,
.button:hover {
    background-color: transparent !important;
    color: var(--accent-orange) !important;
}

/* Secondary Button (Outline) */
.button-outline {
    background-color: transparent !important;
    color: var(--accent-orange) !important;
    border: 2px solid var(--accent-orange) !important;
}

.button-outline:hover {
    background-color: var(--accent-orange) !important;
    color: var(--primary-bg) !important;
}

/* ============================================
   IMAGES WITH ORANGE BORDER
   ============================================ */
.orange-border-image {
    border: 4px solid var(--accent-orange) !important;
    border-radius: 10px !important;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 980px) {
    .hero-title {
        font-size: 36px !important;
    }
    
    .section-title {
        font-size: 32px !important;
    }
    
    .script-title {
        font-size: 36px !important;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 28px !important;
    }
    
    .section-title {
        font-size: 26px !important;
    }
    
    .service-card,
    .who-we-are-card,
    .unlock-ai-card {
        margin-bottom: 20px !important;
    }
}

/* ============================================
   DIVI SPECIFIC OVERRIDES
   ============================================ */
.et_pb_text {
    color: var(--text-white) !important;
}

.et_pb_text p {
    color: var(--text-gray) !important;
}

.et_pb_module_header {
    color: var(--text-white) !important;
}

.et_pb_blurb_description {
    color: var(--text-gray) !important;
}

/* Remove default Divi styling conflicts */
.et_pb_section.et_pb_section_0 {
    background-color: var(--primary-bg) !important;
}

#page-container {
    background-color: var(--primary-bg) !important;
}

.et_pb_fullwidth_section {
    background-color: var(--primary-bg) !important;
}
