/* =========================================
   TIKZ MEDIA - LAW FIRM LANDING PAGE CSS
   ========================================= */

/* CSS Variables */
:root {
    --primary-orange: #ef7f22;
    --dark-orange: #d96d1e;
    --dark-bg: #0a0a0a;
    --light-bg: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --accent-gray: #f9fafb;
    --border-color: #e5e7eb;
}

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

body {
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: white;
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
    background: #ffffff;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.header-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-logo {
    display: flex;
    align-items: center;
    font-size: 1.85rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
    color: var(--text-dark);
    text-decoration: none;
    gap: 0.5rem;
}

.header-logo img {
    height: 65px;
    width: auto;
}

.logo-separator {
    width: 2px;
    height: 50px;
    background: #ef7f22;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
}

.email-row {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.phone-row {
    display: flex;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0px;
    color: #ef7f22;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: normal;
}

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

.contact-item a {
    color: #ef7f22;
    text-decoration: none;
}

.contact-item:hover {
    color: #ef7f22;
}

header.site-header a,
header.site-header a:hover {
    color: #ef7f22;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #fff8f3 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    font-family: 'Outfit', sans-serif;
}

.hero-content h1 .highlight {
    color: var(--primary-orange);
    position: relative;
    display: inline-block;
}

.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 16px;
    background: rgba(239, 127, 34, 0.2);
    z-index: -1;
    animation: underlineExpand 1s ease-out 1s both;
}

@keyframes underlineExpand {
    from { width: 0; }
    to   { width: 100%; }
}

.hero-content h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* CTA Button */
.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff9b4d 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(239, 127, 34, 0.35);
    position: relative;
    overflow: hidden;
    border: none;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.cta-primary:hover::before { left: 100%; }
.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(239, 127, 34, 0.45);
}

/* Stats Preview */
.stats-preview { margin-top: 3rem; }

.stat-box {
    background: linear-gradient(135deg, #fff8f3 0%, white 100%);
    padding: 1.75rem;
    border-radius: 18px;
    border: 2px solid rgba(239, 127, 34, 0.1);
    transition: all 0.35s ease;
    cursor: pointer;
    text-align: center;
    margin-bottom: 1rem;
}

.stat-box:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 15px 40px rgba(239, 127, 34, 0.2);
    border-color: var(--primary-orange);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* =========================================
   CONTACT FORM (CF7 STYLES)
   ========================================= */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.label-group-icon {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.label-group-icon .label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.label-group-icon .label label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.label-group-icon .icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.label-group-icon .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.label-group-icon .form-field { width: 100%; }

.label-group-icon .form-field input[type="text"],
.label-group-icon .form-field input[type="email"],
.label-group-icon .form-field input[type="tel"] {
    width: 100%;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #e8e8e8;
    color: #1a1a1a;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.label-group-icon .form-field input[type="text"]:focus,
.label-group-icon .form-field input[type="email"]:focus,
.label-group-icon .form-field input[type="tel"]:focus {
    outline: none;
    background: #d9d9d9;
}

.label-group-icon .form-field input[type="text"]::placeholder,
.label-group-icon .form-field input[type="email"]::placeholder,
.label-group-icon .form-field input[type="tel"]::placeholder {
    color: #b8b8b8;
}

.label-group-icon .form-field select {
    width: 100%;
    padding: 1rem 1.25rem;
    padding-right: 3rem;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #e8e8e8;
    color: #b8b8b8;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    box-sizing: border-box;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23b8b8b8' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
}

.label-group-icon .form-field select:focus {
    outline: none;
    background-color: #d9d9d9;
    color: #000;
}

.label-group-icon.textarea-contact .form-field textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #e8e8e8;
    color: #1a1a1a;
    resize: vertical;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.label-group-icon.textarea-contact .form-field textarea:focus {
    outline: none;
    background: #d9d9d9;
}

.label-group-icon.textarea-contact .form-field textarea::placeholder {
    color: #b8b8b8;
}

.send-contact-button { position: relative; }

.send-contact-button input[type="submit"],
.send-contact-button button[type="submit"] {
    width: 100%;
    background: #ef7f22;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-contact-button input[type="submit"]:hover,
.send-contact-button button[type="submit"]:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(239, 127, 34, 0.4);
    color: #fff;
}

.send-contact-button .arrow-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.send-contact-button .arrow-icon img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.wpcf7-not-valid-tip {
    font-size: 0.85rem;
    color: #dc2626;
    margin-top: 0.25rem;
}

.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
    border: 2px solid #dc2626;
    background: #fef2f2;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.wpcf7-mail-sent-ok {
    border: 2px solid #16a34a;
    background: #f0fdf4;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.wpcf7-spinner {
    position: absolute;
    right: 5rem;
    top: 50%;
    transform: translateY(-50%);
}

.wpcf7-response-output { color: red; }

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.screen-reader-response { display: none; }

.contact-form-wrapper {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}

.form-header { margin-bottom: 2rem; }

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

.form-header p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* =========================================
   WHY SECTION
   ========================================= */
.why-section {
    background: var(--dark-bg);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-left-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
}

.why-left-content .subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.why-features-list {
    list-style: none;
    padding: 0;
}

.why-features-list li {
    color: white;
    font-size: 1.05rem;
    line-height: 1.8;
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.why-features-list li:last-child { border-bottom: none; }

.why-features-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.why-features-list li:hover {
    padding-left: 3rem;
    color: var(--primary-orange);
}

.why-features-list li:hover::before { transform: translateX(5px); }

.why-bottom-text {
    margin-top: 2.5rem;
    padding: 2rem;
    background: rgba(239, 127, 34, 0.1);
    border-radius: 16px;
    border-left: 4px solid var(--primary-orange);
}

.why-bottom-text p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 400;
    margin: 0;
}

/* Why Visual */
.why-visual {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.why-visual-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.why-visual-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.why-visual-badge {
    background: var(--primary-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.why-stat-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.why-stat-card:hover {
    background: rgba(239, 127, 34, 0.1);
    border-color: var(--primary-orange);
    transform: translateY(-4px);
}

.why-stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.why-stat-number {
    color: var(--primary-orange);
    font-size: 2.25rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

/* PPC Image Banners */
.ppc-about-middle-banner-image {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.ppc-about-middle-banner-image img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
    transform: none !important;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
    background: white;
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    font-family: 'Outfit', sans-serif;
}

.section-header p {
    font-size: 1.15rem;
    color: #64748b;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    padding: 2.5rem;
    border-radius: 26px;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, #ff9b4d 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 22px 65px rgba(239, 127, 34, 0.18);
    transform: translateY(-10px);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.service-icon img {
    width: 70px;
    height: 70px;
    object-fit: cover;
}

/*.service-card:hover .service-icon {
    transform: scale(1.12) rotate(-8deg);
}*/

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    margin: 0;
}

.service-card > p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    font-weight: 400;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #475569;
    line-height: 1.6;
    transition: all 0.2s ease;
    font-weight: 400;
    font-size: 0.95rem;
}

.service-list li:hover {
    color: var(--primary-orange);
    padding-left: 2.3rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 1.25rem;
}

/* =========================================
   PRACTICE AREAS SECTION
   ========================================= */
.practice-section {
    background: var(--dark-bg);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.practice-icon img {
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.practice-section .section-header h2 { color: white; }
.practice-section .section-header p  { color: rgba(255,255,255,0.75); }

.practice-item {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem 1.5rem;
    border-radius: 22px;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.12);
    /*transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);*/
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.practice-item:hover {
    background: rgba(239, 127, 34, 0.18);
    border-color: var(--primary-orange);
    /*transform: translateY(-10px) scale(1.05);*/
    box-shadow: 0 22px 50px rgba(239, 127, 34, 0.25);
}

.practice-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    transition: transform 0.35s ease;
}

/*.practice-item:hover .practice-icon {
    transform: scale(1.25) rotate(-12deg);
}*/

.practice-item p {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* =========================================
   STRATEGY SECTION
   ========================================= */
.strategy-section {
    background: linear-gradient(180deg, var(--accent-gray) 0%, #ffffff 100%);
    padding: 100px 0;
}

.strategy-item {
    background: white;
    padding: 2rem 2.5rem;
    border-radius: 22px;
    border-left: 6px solid var(--primary-orange);
    display: flex;
    align-items: center;
    gap: 2rem;
    /*transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);*/
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 1.5rem;
}

.strategy-item:hover {
    box-shadow: 0 15px 45px rgba(239, 127, 34, 0.2);
    /*transform: translateX(18px) scale(1.02);*/
    border-left-width: 10px;
}

.strategy-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff9b4d 100%);
    color: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    flex-shrink: 0;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 10px 30px rgba(239, 127, 34, 0.35);
    transition: all 0.4s ease;
}

/*.strategy-item:hover .strategy-number {
    transform: rotate(360deg) scale(1.15);
}*/

.strategy-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
}

.strategy-note {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    border: 2px solid var(--primary-orange);
    margin-top: 3rem;
    box-shadow: 0 15px 45px rgba(239, 127, 34, 0.18);
}

.strategy-note p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0;
}

/* =========================================
   RESULTS SECTION
   ========================================= */
.results-section {
    background: var(--dark-bg);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.results-section .section-header { position: relative; z-index: 1; }
.results-section .section-header h2 { color: white; }
.results-section .section-header p  { color: rgba(255, 255, 255, 0.7); }

/* Left image section */
.diffrence-img {
    position: relative;
    width: 100%;
}

.inner-tikz-different-image {
    position: relative;
    width: 100%;
    min-height: 300px;
}

.middle-different-banner-image,
.bottom-different-banner-image {
    position: absolute;
}

.middle-different-banner-image {
    top: 0;
    left: 0;
    width: 85%;
    z-index: 1;
}

.middle-different-banner-image img {
    width: 100%;
    height: auto;
}

.bottom-different-banner-image {
    top: 160px;
    right: 0;
    width: 70%;
    z-index: 3;
    animation: floatUpDown 4s ease-in-out infinite;
}

.bottom-different-banner-image img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

@keyframes floatUpDown {
    0%   { transform: translateY(18px); }
    50%  { transform: translateY(-18px); }
    100% { transform: translateY(18px); }
}

/* Dashboard Card */
.dashboard-card {
    background: #1a1a1a;
    border-radius: 24px;
    padding: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
    transform: translateX(-80px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-card.animate-in { transform: translateX(0); }

.dashboard-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.dashboard-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.dashboard-badge {
    background: var(--primary-orange);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.analytics-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.analytics-image-wrapper {
    position: relative;
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.analytics-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.result-stat {
    background: #1a1a1a;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-stat:hover {
    transform: translateX(0) translateY(-8px) scale(1.02);
    background: rgba(239, 127, 34, 0.1);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 50px rgba(239, 127, 34, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.result-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-orange);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.result-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

.results-cta {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
    background: white;
    padding: 100px 0;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }

.faq-question {
    padding: 1.5rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background: #fef3e7;
    color: var(--primary-orange);
}

.faq-icon {
    width: 24px;
    height: 24px;
    background: var(--accent-gray);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-weight: 700;
}

.faq-item.active .faq-icon {
    background: var(--primary-orange);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer { max-height: 500px; }

.faq-answer p {
    padding: 20px 2rem 1.5rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    background: #ef7f22;
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--primary-orange);
    padding: 1.25rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 45px rgba(0,0,0,0.25);
}

.cta-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    color: var(--primary-orange);
}

/* =========================================
   WESAGE FOOTER SECTION
   ========================================= */
.wesage-footer-section {
    background: #ffffff;
    padding: 60px 0 !important;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #ef7f22;
}

.wesage-footer-logo {
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
}

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

.wesage-logo-wrapper {
    display: flex;
    justify-content: center;
}

.wesage-logo-wrapper .logo-separator {
    height: 100px;
    margin-left: 30px;
}

.wesage-logo-link { display: inline-block; }

.wesage-logo-img {
    max-width: 200px;
    height: auto;
}

.wesage-footer-section .row {
    animation: fadeInUp 0.8s ease-out 0.2s both;
    justify-content: center;
}

.wesage-contact-item {
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    padding: 25px 20px;
    background: #ffffff;
    border-radius: 15px;
    border: 2px solid #f0f0f0;
    transition: all 0.4s ease;
    min-height: 90px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.wesage-contact-item:hover {
    background: #ef7f22;
    border-color: #ef7f22;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(239, 127, 34, 0.3);
}

.wesage-contact-item:hover * { color: #ffffff !important; }

.wesage-contact-icon {
    font-size: 26px;
    color: #ef7f22;
    min-width: 35px;
    transition: all 0.4s ease;
}

.wesage-contact-item:hover .wesage-contact-icon {
    color: #ffffff !important;
    transform: scale(1.2) rotate(5deg);
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1.2) rotate(5deg); }
    50%       { transform: scale(1.3) rotate(5deg); }
}

.wesage-contact-link {
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 600;
}

.wesage-contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ef7f22;
    transition: width 0.3s ease;
}

.wesage-contact-link:hover::after { width: 100%; }

.wesage-contact-item:hover .wesage-contact-link { color: #ffffff !important; }

.wesage-contact-item:hover .wesage-contact-link::after { background: #ffffff; }

.wesage-contact-text {
    line-height: 1.6;
    display: inline-block;
    color: #000000;
    font-weight: 500;
}

.wesage-contact-item:hover .wesage-contact-text { color: #ffffff !important; }

.wesage-contact-col {
    display: flex;
    justify-content: center;
}

.wesage-footer-txt {
    text-align: center;
}

.wesage-footer-txt p {
    font-size: 18px;
    font-weight: 500;
}

/* =========================================
   SITE FOOTER
   ========================================= */
.site-footer {
    background: var(--dark-bg);
    color: rgba(255,255,255,0.65);
    padding: 20px;
    text-align: center;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer p { margin-bottom: 0px; }

footer.site-footer p > a { color: rgba(255,255,255,0.65); }

/* =========================================
   MOBILE BOTTOM BAR
   ========================================= */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #ef7f22;
    flex: 1;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.25);
}

.mobile-bottom-bar .mobile-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    border-right: 1px solid rgba(255,255,255,0.25);
}

.mobile-bottom-bar .mobile-btn i {
    font-size: 18px;
    color: #fff;
}

.mobile-bottom-bar .mobile-btn:hover { background: #000; }

/* =========================================
   SCROLL TO TOP BUTTON
   ========================================= */
.scroll-to-top {
    font-size: 20px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    border-radius: 50%;
    background: #ef7f22;
    border: 1px solid #ef7f22;
    width: 40px;
    height: 40px;
    line-height: 40px;
    z-index: 9999;
    outline: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.show {
    display: inline-block;
    opacity: 1;
    visibility: visible;
}

.scroll-to-top i { color: #fff; }

.scroll-to-top:hover {
    background: #d66e1c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(239, 127, 34, 0.4);
}

.scroll-to-top:active { transform: translateY(-1px); }

/* =========================================
   CONTACT INFO CONTAINER (FOOTER AREA)
   ========================================= */
.footer-connect-section {
    background: #e9e9e9;
    font-size: 14px;
}

.contact-info-container a,
.contact-info-container i {
    color: #ef7f22;
}

.contact-info-container a:hover { color: #ef7f22; }

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

/* Tablet & Small Desktop */
@media (max-width: 991px) {
    .contact-info {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .hero-content h1 { font-size: 2.75rem; }

    .section-header h2,
    .why-left-content h2 { font-size: 2.25rem; }

    .cta-content h2 { font-size: 2.5rem; }

    /*.header-logo-wrapper {
        justify-content: center;
        margin-bottom: 1rem;
    }*/

    /*.contact-info-container { align-items: center; }*/

    .email-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .logo-separator { height: 40px; }

    /*.header-logo img { max-height: 40px; }*/

    /* Results Section */
    .dashboard-card,
    .result-stat { transform: translateY(50px); }

    .dashboard-card.animate-in,
    .result-stat.animate-in { transform: translateY(0); }

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

    /* Different Banner */
    .inner-tikz-different-image { min-height: 380px; }

    .middle-different-banner-image {
        width: 100%;
        position: relative;
    }

    .bottom-different-banner-image {
        position: relative;
        width: 90%;
        margin: -80px auto 0;
        right: auto;
        top: auto;
    }

    /* WeSage Footer */
    .wesage-footer-section { padding: 50px 0 !important; }
    .wesage-footer-logo    { margin-bottom: 35px; }

    .wesage-contact-item {
        margin-bottom: 20px;
        min-height: 85px;
    }

    .wesage-contact-icon { font-size: 22px; }

    .wesage-contact-item {
        font-size: 15px;
        padding: 20px 15px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .header-logo { font-size: 1.5rem; }
    .hero-content h1 { font-size: 2.25rem; }

    .contact-form-card { padding: 2rem; }
    .stat-number { font-size: 2rem; }
    .result-number { font-size: 2.75rem; }

    .mobile-bottom-bar { display: flex; }

    .header-logo-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    .contact-info-container {
        align-items: center;
    }
    .cta-content h2 {
        font-size: 36px;
    }
    .wesage-footer-txt p {
    font-size: 16px;
}
    .wesage-logo-wrapper img {
        height: 85px;
    }
    .logo-separator {
        width: 80px;
        height: 1px;
    }

    .email-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* WeSage Footer */
    .wesage-footer-section { padding: 40px 0 !important; }
    .wesage-logo-img { max-width: 160px; }
    .wesage-footer-logo { margin-bottom: 30px; }

    .wesage-contact-item {
        text-align: center;
        justify-content: center !important;
        padding: 18px 15px;
        font-size: 14px;
        min-height: 80px;
        margin-bottom: 15px;
    }

    .wesage-contact-icon {
        font-size: 20px;
        min-width: 30px;
    }

    .wesage-contact-text { font-size: 13px; }

    /* Form */
    .label-group-icon .form-field input[type="text"],
    .label-group-icon .form-field input[type="email"],
    .label-group-icon .form-field input[type="tel"],
    .label-group-icon .form-field select,
    .label-group-icon.textarea-contact .form-field textarea {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }

    .send-contact-button input[type="submit"],
    .send-contact-button button[type="submit"] {
        padding: 1.125rem 1.75rem;
        font-size: 1rem;
    }

    .send-contact-button .arrow-icon {
        right: 1.25rem;
        width: 28px;
        height: 28px;
    }

    .send-contact-button .arrow-icon img {
        width: 16px;
        height: 16px;
    }

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

/* Extra Small Mobile */
@media (max-width: 575.98px) {
    .wesage-logo-img { max-width: 140px; }

    .wesage-contact-item {
        padding: 15px 12px;
        font-size: 13px;
        min-height: 75px;
    }

    .wesage-contact-text { font-size: 13px; }
}

@media (max-width: 480px) {
    .label-group-icon .label label { font-size: 0.9rem; }

    .label-group-icon .icon {
        width: 18px;
        height: 18px;
    }

    .label-group-icon .form-field input[type="text"],
    .label-group-icon .form-field input[type="email"],
    .label-group-icon .form-field input[type="tel"],
    .label-group-icon .form-field select {
        padding: 0.875rem;
    }
}