/* Theme Name: HFTP
Theme URI: https://havefunintheprocess.com
Author: HFTP Team
Author URI: https://havefunintheprocess.com
Description: A custom WordPress theme for HFTP website
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hftp
*/

/* iOS Fixes */
@supports (-webkit-touch-callout: none) {
    .revops-section {
        min-height: -webkit-fill-available;
    }
    
    .revops-content {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .revops-wrapper {
        -webkit-overflow-scrolling: touch;
    }
}

/* Hide WordPress default elements */
.site-header {
    display: none;
}

/* Footer Styles */
.site-footer {
    background: #F5F5DC;  /* Cream color */
    padding: 1rem;
    text-align: center;
    color: #000;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.site-info {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1rem;
}

.copyright {
    font-size: 0.9rem;
    color: #000;
    text-align: center;
    width: 100%;
    margin-bottom: 0.5rem;
}

.created-by {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.creator-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #000;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
    line-height: 1;
}

.creator-link:hover {
    opacity: 0.8;
}

.creator-text {
    color: #000;
    font-size: 0.9rem;
    line-height: 1;
}

.creator-logo {
    height: 0.15em;
    width: auto;
    vertical-align: middle;
    display: inline-block;
    line-height: 1;
}

/* Copyright Text */
.copyright-text {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: #000;
    font-size: 0.9rem;
    padding: 1rem;
    z-index: 10;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

body {
    font-weight: 700;
    padding-top: 0;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    background-image: url('../assets/back3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 2rem;
    position: relative;
    color: white;
    text-align: center;
}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonials h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #E85A33;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin: 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-content blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 2rem;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.testimonial-content blockquote p {
    margin: 0;
}

.testimonial-author {
    text-align: left;
}

.testimonial-author strong {
    display: block;
    font-size: 1.2rem;
    color: #E85A33;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.testimonial-author span {
    color: #ffffff;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: #E85A33;
    color: #fff;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(232, 90, 51, 0.3);
}

.carousel-btn:hover {
    background: #d1451f;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(232, 90, 51, 0.4);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dot.active {
    background: #E85A33;
    transform: scale(1.2);
    border-color: #E85A33;
}

.dot:hover {
    background: #E85A33;
    transform: scale(1.1);
    border-color: #E85A33;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive for Testimonials */
@media screen and (max-width: 768px) {
    .testimonials {
        padding: 3rem 1rem;
    }
    
    .testimonials h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .testimonials-carousel {
        max-width: 100%;
        margin: 0 auto 2rem;
    }
    
    .testimonial-content {
        padding: 2rem;
        margin: 0 0.5rem;
        min-height: auto;
    }
    
    .testimonial-content blockquote {
        font-size: 1.2rem;
        line-height: 1.6;
    }
    
    .testimonial-author {
        margin-top: 1.5rem;
    }
    
    .testimonial-author strong {
        font-size: 1.1rem;
    }
    
    .testimonial-author span {
        font-size: 0.95rem;
    }
    
    .carousel-controls {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        touch-action: manipulation;
    }
    
    .carousel-dots {
        gap: 0.4rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media screen and (max-width: 480px) {
    .testimonials {
        padding: 2rem 1rem;
    }
    
    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonials-carousel {
        max-width: 100%;
        margin: 0 auto 1.5rem;
    }
    
    .testimonial-content {
        padding: 1.5rem;
        margin: 0 0.25rem;
        border-radius: 12px;
    }
    
    .testimonial-content blockquote {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-author {
        margin-top: 1rem;
    }
    
    .testimonial-author strong {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .testimonial-author span {
        font-size: 0.9rem;
    }
    
    .carousel-controls {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        touch-action: manipulation;
    }
    
    .carousel-dots {
        gap: 0.3rem;
        order: -1;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

/* Additional mobile optimizations for touch devices */
@media (hover: none) and (pointer: coarse) {
    .carousel-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    .dot {
        min-width: 12px;
        min-height: 12px;
    }
    
    .testimonial-content {
        -webkit-tap-highlight-color: transparent;
    }
}

/* Landscape orientation on mobile */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .testimonials {
        padding: 2rem 1rem;
    }
    
    .testimonials h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .carousel-controls {
        margin-top: 1rem;
    }
}

/* Process Training Page Styles */
.process-training-page .site-content {
    padding-top: 0;
    margin-top: 0;
}

.process-training-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.process-training-section {
    background-image: url('../assets/back2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem 2rem;
}

.process-training-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: transparent;
    padding: 2rem 1rem;
    border-radius: 10px;
    box-shadow: none;
}

.process-training-title {
    font-size: 3rem;
    color: #2D7D7D;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.process-training-intro {
    margin-bottom: 2rem;
}

.process-training-intro p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #E85A33;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

.process-training-description {
    margin-bottom: 3rem;
}

.process-training-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2D7D7D;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

.process-training-benefits {
    margin-bottom: 3rem;
    text-align: center;
}

.process-training-benefits h2 {
    color: #E85A33;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.process-training-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    text-align: left;
}

.process-training-benefits li {
    font-size: 1.1rem;
    color: #2D7D7D;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

.process-training-benefits li:before {
    content: "✓";
    color: #E85A33;
    position: absolute;
    left: 0;
    text-shadow: none;
}

/* Mobile Responsive for Process Training */
@media screen and (max-width: 1024px) {
    .process-training-page .site-content {
        padding-top: 0;
    }
    
    .process-training-section {
        padding: 5rem 1.5rem;
    }
    
    .process-training-content {
        padding: 3rem;
    }
    
    .process-training-title {
        font-size: 2.5rem;
    }
    
    .process-training-intro p {
        font-size: 1.1rem;
    }
    
    .process-training-description p {
        font-size: 1rem;
    }
    
    .process-training-benefits h2 {
        font-size: 1.8rem;
    }
    
    .process-training-benefits li {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .process-training-wrapper {
        min-height: auto;
    }
    
    .process-training-section {
        padding: 4rem 1rem;
        min-height: auto;
    }
    
    .process-training-content {
        padding: 2.5rem;
    }
    
    .process-training-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .process-training-intro p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .process-training-description p {
        font-size: 0.95rem;
    }
    
    .process-training-benefits {
        margin-bottom: 2rem;
    }
    
    .process-training-benefits h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .process-training-benefits li {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
        padding-left: 1.5rem;
    }
    
    .process-training-benefits li:before {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .process-training-page .site-content {
        padding-top: 0;
    }
    
    .process-training-section {
        padding: 3rem 1rem;
    }
    
    .process-training-content {
        padding: 2rem;
        border-radius: 10px;
    }
    
    .process-training-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .process-training-intro p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .process-training-description p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .process-training-benefits {
        margin-bottom: 1.5rem;
    }
    
    .process-training-benefits h2 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }
    
    .process-training-benefits li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        padding-left: 1.25rem;
    }
    
    .process-training-benefits li:before {
        font-size: 1rem;
    }
}

/* AI Process Page Responsive Styles */
@media screen and (max-width: 1024px) {
    .ai-process-wrapper {
        padding: 1.5rem;
        padding-top: 8rem;
    }

    .ai-process-section {
        padding: 2rem;
    }

    .ai-process-title {
        font-size: 2rem;
    }

    .ai-process-intro {
        font-size: 1.1rem;
    }

    .ai-process-checklist li {
        font-size: 1rem;
        padding: 1rem 1.2rem;
        padding-left: 2.5rem;
    }

    .ai-process-outcome {
        padding: 1.5rem;
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .ai-process-wrapper {
        padding: 1rem;
        padding-top: 7rem;
    }

    .ai-process-section {
        padding: 1.5rem;
    }

    .ai-process-title {
        font-size: 1.8rem;
    }

    .ai-process-intro {
        font-size: 1rem;
    }

    .ai-process-checklist li {
        font-size: 0.95rem;
        padding: 0.8rem 1rem;
        padding-left: 2.2rem;
    }

    .ai-process-outcome {
        padding: 1.2rem;
        font-size: 0.95rem;
    }

    .beacon-logo {
        max-width: 120px;
    }
}

.site-content {
    padding-top: 60px;
    margin-top: 0;
    position: relative;
}

/* Section Styles */
.section {
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Card Styles */
.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Button Styles */
.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #007bff;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* Navigation Styles */
.header-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    background: transparent;
    box-shadow: none;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
    padding: 0.5rem 0;
}

.nav-link {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #007bff;
}

/* Page Specific Styles */
.revops-section,
.salesops-section,
.process-section,
.cpo-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
}

.revops-content,
.salesops-content,
.process-content,
.cpo-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .section {
        padding: 4rem 1.5rem;
    }

    .revops-section,
    .salesops-section,
    .process-section,
    .cpo-section {
        padding: 5rem 1.5rem;
    }

    .revops-content,
    .salesops-content,
    .process-content,
    .cpo-content {
        padding: 2.5rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .header-dropdown {
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
}

/* Ensure desktop navigation is always transparent */
@media screen and (min-width: 1025px) {
    .header-dropdown {
        background: transparent !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
    }
    
    /* Override any page-specific desktop styles */
    .revops-page .header-dropdown,
    .process-page .header-dropdown,
    .cpo-page .header-dropdown,
    .salesops-page .header-dropdown,
    .process-training-page .header-dropdown {
        background: transparent !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
    }
    
    /* Hide mobile direct links on desktop */
    .nav-menu .mobile-direct-links {
        display: none !important;
    }
}

@media screen and (max-width: 480px) {
    .section {
        padding: 3rem 1rem;
    }

    .revops-section,
    .salesops-section,
    .process-section,
    .cpo-section {
        padding: 4rem 1rem;
    }

    .revops-content,
    .salesops-content,
    .process-content,
    .cpo-content {
        padding: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Animation Styles */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Quote Styles */
.quote {
    font-style: italic;
    color: #555;
    border-left: 4px solid #007bff;
    padding-left: 1.5rem;
    margin: 2rem 0;
}

/* List Styles */
ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Link Styles */
a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background-image: url('../assets/back2.png');
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 0;
}

.hero img {
    max-width: 40%;
    height: auto;
    animation: fadeInScale 1.5s ease-out;
}

.hero-text {
    font-size: 3rem;
    margin-top: 2rem;
    animation: fadeInScale 1.5s ease-out;
    animation-delay: 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
    display: flex;
    gap: 0.2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.hero-text span.word {
    margin: 0 0.5rem;
    display: flex;
}

.hero-text span:nth-child(3n+1) {
    color: #2D7D7D;
}

.hero-text span:nth-child(3n+2) {
    color: #E85A33;
}

.hero-text span:nth-child(3n+3) {
    color: #ee8422;
}

/* About Section */
.about {
    background-image: url('../assets/back1.png');
    color: white;
    text-align: center;
    position: relative;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    min-height: 100vh;
    justify-content: center;
}

.about-text {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.about h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #E85A33;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.benefits-list {
    list-style: none;
    margin: 2.5rem 0;
    padding: 0;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
}

.benefits-list li {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    padding-left: 3rem;
    position: relative;
    line-height: 1.6;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

.cta-text {
    font-size: 1.6rem;
    font-weight: 800;
    margin-top: 2.5rem;
    color: #E85A33;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.about img {
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    max-width: 100%;
}

/* Book Section */
.book-section {
    background-image: url('../assets/back2.png');
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    gap: 2rem;
}

.book-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-link {
    display: block;
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.book-image {
    max-width: 225px;
    height: auto;
    display: block;
    transition: all 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.book-link:hover .book-image {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .hero img {
        max-width: 60%;
    }
    
    .hero-text {
        font-size: 2rem;
    }

    .about-content {
        padding: 1rem;
        margin: 1rem;
    }

    .about h2 {
        font-size: 2.2rem;
    }

    .about p {
        font-size: 1.2rem;
    }

    .book-content {
        padding: 1rem;
        margin: 1rem;
    }

    .book-link {
        font-size: 1.5rem;
        text-align: center;
    }

    .book-image {
        max-width: 187.5px;
    }

    .benefits-list li {
        font-size: 1.2rem;
        padding-left: 2.5rem;
    }
    
    .cta-button {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        min-width: 180px;
    }

    .guide-image {
        max-width: 87.5px;
    }

    .guide-text {
        font-size: 1.2rem;
        padding: 0.7rem 1.3rem;
    }

    .revops-section {
        padding: 4rem 1rem 2rem;
        min-height: auto;
    }

    .revops-content {
        padding: 2rem 1rem 0;
    }

    .revops-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .revops-problems p {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .revops-solution {
        padding: 1.5rem;
        margin: 0 0 2rem 0;
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
        border-radius: 15px;
        color: white;
    }

    .revops-solution h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: #E85A33;
    }

    .expert-text {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        color: #ffffff;
    }

    .process-text {
        font-size: 1.1rem;
        color: #ffffff;
    }

    .revops-benefits {
        margin: 0 0 2rem 0;
    }

    .revops-benefits li {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        color: #2D7D7D;
    }

    .revops-footer {
        padding: 1.5rem 1rem;
        background: #F5F5DC;
        color: #2D7D7D;
    }

    .footer-logos {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }

    .rev-logo {
        height: 30px;
    }
}

@media screen and (max-width: 480px) {
    .hero img {
        max-width: 70%;
    }
    
    .hero-text {
        font-size: 1.5rem;
    }

    .hero-text span.word {
        margin: 0 0.2rem;
    }

    .about h2 {
        font-size: 1.8rem;
    }

    .book-link {
        font-size: 1.2rem;
    }

    .book-image {
        max-width: 150px;
    }

    .benefits-list li {
        font-size: 1.1rem;
        padding-left: 2rem;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 0.9rem 1.8rem;
        min-width: 160px;
    }

    .guide-image {
        max-width: 70px;
    }

    .guide-text {
        font-size: 1.1rem;
        padding: 0.6rem 1.2rem;
    }

    .revops-section {
        padding: 3.5rem 1rem 1.5rem;
    }

    .revops-content {
        padding: 1.5rem 0.5rem 0;
    }

    .revops-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .revops-problems p {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .revops-solution {
        padding: 1rem;
        margin: 0 0 1.5rem 0;
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
        border-radius: 15px;
        color: white;
    }

    .revops-solution h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
        color: #E85A33;
    }

    .expert-text {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
        color: #ffffff;
    }

    .process-text {
        font-size: 1rem;
        color: #ffffff;
    }

    .revops-benefits {
        margin: 0 0 1.5rem 0;
    }

    .revops-benefits li {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
        color: #2D7D7D;
    }

    .revops-footer {
        padding: 1rem 0.5rem;
        background: #F5F5DC;
        color: #2D7D7D;
    }

    .footer-logos {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.3rem;
    }

    .rev-logo {
        height: 25px;
    }
}

.guide-section {
    margin-top: 4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.guide-link {
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.guide-image {
    max-width: 105px;
    height: auto;
    display: block;
    transition: all 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.guide-link:hover .guide-image {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.guide-text {
    display: inline-block;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #E85A33;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid #E85A33;
    margin-top: 0.5rem;
}

/* Remove these sections */
.book-section,
.book-content,
.book-link,
.book-image,
.copyright-text {
    display: none;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cta-button {
    display: block;
    background-color: #E85A33;
    color: white !important;
    padding: 1.2rem 2.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid #E85A33;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
    width: fit-content;
    min-width: 200px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background-color: #ee8422;
    border-color: #ee8422;
    color: white !important;
}

.cta-button:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.learn-more-button {
    background: linear-gradient(135deg, #2D7D7D, #1a5a5a);
    border: 2px solid #2D7D7D;
    margin-top: 1rem;
}

.learn-more-button:hover {
    background: linear-gradient(135deg, #1a5a5a, #2D7D7D);
    border-color: #1a5a5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 125, 125, 0.4);
}

/* Navigation Styles */
.header-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    background: transparent;
    box-shadow: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    justify-content: flex-end;
}

.nav-menu > li > a {
    display: block;
    padding: 0.8rem 1.2rem;
    color: #E85A33;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    white-space: nowrap;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-menu > li > a:hover {
    color: #E85A33;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}



.menu-toggle {
    display: none;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #2D7D7D;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile and Tablet Menu Styles */
@media screen and (max-width: 1024px) {
    .header-dropdown {
        padding: 0.5rem;
        background: #F5F5DC !important;
        backdrop-filter: blur(10px) !important;
        position: relative;
        z-index: 9998;
    }

    .main-nav {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        margin-left: auto;
        min-width: 44px;
        min-height: 44px;
        padding: 8px;
        align-items: center;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        touch-action: manipulation;
        background: transparent;
        border: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-touch-callout: none;
        -webkit-appearance: none;
        appearance: none;
    }

    .nav-menu {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #F5F5DC;
        backdrop-filter: blur(15px);
        margin: 0;
        padding: 1rem 0;
        list-style: none;
        z-index: 9999;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-menu > li {
        position: relative;
        margin: 0;
        padding: 0;
        width: 100%;
        text-align: center;
    }

    .nav-menu > li > a {
        display: block;
        padding: 1rem 2rem;
        color: #2D7D7D;
        text-decoration: none;
        font-size: 1.1rem;
        line-height: 1.2;
        text-align: center;
        border-bottom: 1px solid rgba(45, 125, 125, 0.2);
        transition: background-color 0.3s ease;
    }

    .nav-menu > li > a:hover {
        background-color: rgba(45, 125, 125, 0.1);
    }





    .nav-menu .mobile-direct-links li {
        margin: 0;
        padding: 0;
        width: 100%;
        text-align: center;
    }

    .nav-menu .mobile-direct-links li a {
        display: block;
        padding: 1rem 2rem;
        color: #2D7D7D;
        text-decoration: none;
        font-size: 1.1rem;
        line-height: 1.2;
        text-align: center;
        border-bottom: 1px solid rgba(45, 125, 125, 0.2);
        transition: background-color 0.3s ease;
    }

    .nav-menu .mobile-direct-links li a:hover {
        background-color: rgba(45, 125, 125, 0.1);
    }

    .site-content {
        padding-top: 80px;
    }
}

/* Specific adjustments for smaller mobile screens */
@media screen and (max-width: 480px) {
    .header-dropdown {
        padding: 0.4rem;
        position: relative;
        z-index: 9998;
    }
    
    .hamburger-menu {
        min-width: 48px;
        min-height: 48px;
        padding: 10px;
        justify-content: space-between;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-touch-callout: none;
        -webkit-appearance: none;
        appearance: none;
    }
    
    .hamburger-line {
        height: 4px;
        border-radius: 3px;
        margin: 1px 0;
    }

    .nav-menu > li > a {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }



    .site-content {
        padding-top: 70px;
    }
}

/* iPhone-specific improvements */
@media screen and (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
    .hamburger-menu {
        min-width: 52px;
        min-height: 52px;
        padding: 12px;
        justify-content: space-between;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-touch-callout: none;
        -webkit-appearance: none;
        appearance: none;
    }
    
    .hamburger-line {
        height: 4px;
        border-radius: 3px;
        margin: 1px 0;
    }
}

/* Page-specific content spacing - removed to match index page */
.salesops-page .site-content,
.cpo-page .site-content,
.process-page .site-content {
    padding-top: 0;
}

@media screen and (max-width: 1024px) {
    .salesops-page .site-content,
    .cpo-page .site-content,
    .process-page .site-content {
        padding-top: 0;
    }
}

@media screen and (max-width: 480px) {
    .salesops-page .site-content,
    .cpo-page .site-content,
    .process-page .site-content {
        padding-top: 0;
    }
}

/* Remove conflicting styles */
.salesops-page .salesops-wrapper,
.cpo-page .cpo-wrapper,
.process-page .process-wrapper {
    padding-top: 0;
}

/* RevOps Page Styles */
.revops-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
    padding-top: 0;
    background-color: transparent;
}

.revops-section {
    width: 100%;
    min-height: 100vh;
    padding: 4rem 2rem;
    background-image: url('../assets/back2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: transparent;
}

.revops-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: #2D7D7D;
    animation: fadeInScale 1.5s ease-out;
    background-color: transparent;
}

.revops-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 3rem;
    color: #2D7D7D;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.revops-problems {
    margin-bottom: 3rem;
}

.revops-problems p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #E85A33;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.revops-solution {
    padding: 2rem;
    margin-bottom: 3rem;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    border-radius: 15px;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.revops-solution h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #E85A33;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.expert-text {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.process-text {
    font-size: 1.2rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.revops-benefits {
    margin-bottom: 3rem;
}

.revops-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.revops-benefits li {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2D7D7D;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.revops-footer {
    width: 100%;
    padding: 2rem;
    background: #F5F5DC;
    color: #2D7D7D;
    text-align: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.x-symbol {
    font-size: 1.5rem;
    font-weight: 300;
}

.rev-logo {
    height: 40px;
    width: auto;
}

/* Mobile Styles for RevOps Page */
@media screen and (max-width: 768px) {
    .revops-wrapper {
        padding-top: 80px;
    }

    .header-dropdown {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: transparent !important;
        backdrop-filter: none !important;
        padding: 0.5rem;
        box-shadow: none;
    }

    .nav-menu {
        display: flex;
        justify-content: flex-end;
        margin: 0;
        padding: 0;
    }

    .nav-menu > li {
        position: relative;
    }

    .nav-menu > li > a {
        color: #2D7D7D;
        padding: 0.8rem 1rem;
        font-size: 1.1rem;
        font-weight: 600;
        -webkit-tap-highlight-color: transparent;
    }



    .revops-section {
        padding: 4rem 1rem 2rem;
        min-height: auto;
    }

    .revops-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        line-height: 1.2;
    }

    .revops-problems {
        margin-bottom: 2rem;
    }

    .revops-problems p {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .revops-solution {
        padding: 1.5rem;
        margin: 0 0 2rem 0;
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
        border-radius: 15px;
        color: white;
    }

    .revops-solution h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: #E85A33;
    }

    .expert-text {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        color: #ffffff;
    }

    .process-text {
        font-size: 1.1rem;
        color: #ffffff;
    }

    .revops-benefits {
        margin: 0 0 2rem 0;
    }

    .revops-benefits li {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        color: #2D7D7D;
    }

    .cta-button {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        min-width: 180px;
    }

    .revops-footer {
        padding: 1.5rem 1rem;
        background: #F5F5DC;
        color: #2D7D7D;
    }

    .footer-logos {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }

    .rev-logo {
        height: 30px;
    }
}

@media screen and (max-width: 480px) {
    .revops-wrapper {
        padding-top: 70px;
    }

    .header-dropdown {
        padding: 0.4rem;
        background: transparent !important;
        backdrop-filter: none !important;
    }

    .nav-menu > li > a {
        padding: 0.7rem 0.9rem;
        font-size: 1rem;
    }

    .revops-section {
        padding: 3.5rem 1rem 1.5rem;
    }

    .revops-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .revops-problems {
        margin-bottom: 1.5rem;
    }

    .revops-problems p {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .revops-solution {
        padding: 1rem;
        margin: 0 0 1.5rem 0;
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
        border-radius: 15px;
        color: white;
    }

    .revops-solution h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
        color: #E85A33;
    }

    .expert-text {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
        color: #ffffff;
    }

    .process-text {
        font-size: 1rem;
        color: #ffffff;
    }

    .revops-benefits {
        margin: 0 0 1.5rem 0;
    }

    .revops-benefits li {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
        color: #2D7D7D;
    }

    .cta-button {
        font-size: 1.1rem;
        padding: 0.9rem 1.8rem;
        min-width: 160px;
    }

    .revops-footer {
        padding: 1rem 0.5rem;
        background: #F5F5DC;
        color: #2D7D7D;
    }

    .footer-logos {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.3rem;
    }

    .rev-logo {
        height: 25px;
    }
}

/* RevOps Page Specific Mobile Styles */
.revops-page .header-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: transparent !important;
    backdrop-filter: none !important;
    padding: 0.5rem;
    box-shadow: none;
}

.revops-page .revops-wrapper {
    padding-top: 60px;
}

@media screen and (max-width: 768px) {
    .revops-page .revops-wrapper {
        padding-top: 80px;
    }
}

@media screen and (max-width: 480px) {
    .revops-page .revops-wrapper {
        padding-top: 70px;
    }
}

/* RevOps Hero Section */
.revops-hero {
    width: 100%;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../assets/back2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem;
    position: relative;
    margin-top: 60px;
}

.revops-hero .hero-logo {
    max-width: 80%;
    height: auto;
    animation: fadeInScale 1.5s ease-out;
    display: block;
}

@media screen and (max-width: 768px) {
    .revops-hero {
        min-height: 40vh;
        padding: 1.5rem;
        margin-top: 80px;
    }

    .revops-hero .hero-logo {
        max-width: 90%;
    }
}

@media screen and (max-width: 480px) {
    .revops-hero {
        min-height: 30vh;
        padding: 1rem;
        margin-top: 70px;
    }

    .revops-hero .hero-logo {
        max-width: 95%;
    }
}

/* RevOps Page Specific Styles */
.revops-page .hero {
    margin-top: 0;
    min-height: 100vh;
}

@media screen and (max-width: 768px) {
    .revops-page .hero {
        margin-top: 0;
        min-height: 100vh;
    }

    .hero img {
        max-width: 90%;
    }

    .hero-text {
        font-size: 4rem;
    }
}

@media screen and (max-width: 480px) {
    .revops-page .hero {
        margin-top: 0;
        min-height: 100vh;
    }

    .hero img {
        max-width: 95%;
    }

    .hero-text {
        font-size: 3rem;
    }
}

/* SalesOps Page Styles */
.salesops-page .hero {
    display: none;
}

.salesops-page .site-content {
    padding-top: 4rem;
}

.salesops-wrapper {
    width: 100%;
    max-width: 100%;
    background-color: transparent;
}

.salesops-section {
    background-image: url('../assets/back2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem 2rem;
}

.salesops-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: transparent;
    padding: 2rem 1rem;
    border-radius: 10px;
    box-shadow: none;
}

.salesops-title {
    font-size: 3rem;
    color: #2D7D7D;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.salesops-problems {
    margin-bottom: 3rem;
}

.salesops-problems p {
    font-size: 1.2rem;
    color: #E85A33;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

.salesops-solution {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.salesops-solution h2 {
    color: #E85A33;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.salesops-benefits {
    margin-bottom: 3rem;
}

.salesops-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.salesops-benefits li {
    font-size: 1.1rem;
    color: #2D7D7D;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

.salesops-benefits li:before {
    content: "✓";
    color: #E85A33;
    position: absolute;
    left: 0;
    text-shadow: none;
}

.salesops-footer {
    text-align: center;
    padding: 2rem 0;
    color: #666;
}

/* Mobile Styles for SalesOps Page */
@media screen and (max-width: 768px) {
    .salesops-wrapper {
        padding: 1rem;
    }

    .salesops-section {
        padding: 4rem 1.5rem 2rem;
    }

    .salesops-title {
        font-size: 2.5rem;
    }

    .salesops-problems {
        margin-bottom: 2rem;
    }

    .salesops-problems p {
        font-size: 1.1rem;
    }

    .salesops-solution {
        padding: 1.5rem;
    }

    .salesops-solution h2 {
        font-size: 1.8rem;
    }

    .salesops-benefits {
        margin-bottom: 2rem;
    }

    .salesops-benefits li {
        font-size: 1rem;
    }

    .salesops-footer {
        padding: 1.5rem 0;
    }
}

@media screen and (max-width: 480px) {
    .salesops-wrapper {
        padding: 0.5rem;
    }

    .salesops-section {
        padding: 3.5rem 1rem 1.5rem;
    }

    .salesops-title {
        font-size: 2rem;
    }

    .salesops-problems {
        margin-bottom: 1.5rem;
    }

    .salesops-problems p {
        font-size: 1rem;
    }

    .salesops-solution {
        padding: 1rem;
    }

    .salesops-solution h2 {
        font-size: 1.5rem;
    }

    .salesops-benefits {
        margin-bottom: 1.5rem;
    }

    .salesops-benefits li {
        font-size: 0.9rem;
    }

    .salesops-footer {
        padding: 1rem 0;
    }
}

/* SalesOps Page Specific Mobile Styles */
.salesops-page .header-dropdown {
    background: transparent;
    backdrop-filter: none;
}

.salesops-page .salesops-wrapper {
    padding-top: 0;
}

@media screen and (max-width: 768px) {
    .salesops-page .salesops-wrapper {
        padding-top: 0;
    }

    .salesops-section {
        padding: 4rem 1.5rem 2rem;
    }

    .salesops-content {
        padding: 2rem 1rem;
    }
}

@media screen and (max-width: 480px) {
    .salesops-page .salesops-wrapper {
        padding-top: 0;
    }

    .salesops-section {
        padding: 3.5rem 1rem 1.5rem;
    }

    .salesops-content {
        padding: 1.5rem 0.5rem;
    }
}

/* SalesOps Hero Section */
.salesops-hero {
    width: 100%;
    min-height: 50vh;
    background-color: #F5F5DC;
    background-image: url('../assets/back2.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
}

.salesops-hero .hero-logo {
    max-width: 40%;
    height: auto;
    animation: fadeInScale 1.5s ease-out;
}

.salesops-hero .hero-text {
    display: none;
}

@media screen and (max-width: 768px) {
    .salesops-hero {
        min-height: 40vh;
        padding: 1.5rem;
    }

    .salesops-hero .hero-logo {
        max-width: 45%;
    }
}

@media screen and (max-width: 480px) {
    .salesops-hero {
        min-height: 30vh;
        padding: 1rem;
    }

    .salesops-hero .hero-logo {
        max-width: 50%;
    }
}

/* SalesOps Page Specific Styles */
.salesops-page .hero {
    margin-top: 0;
    min-height: 100vh;
}

.salesops-page .hero img {
    max-width: 40%;
    height: auto;
    animation: fadeInScale 1.5s ease-out;
}

.salesops-page .hero .hero-text {
    display: none;
}

@media screen and (max-width: 768px) {
    .salesops-page .hero {
        margin-top: 0;
        min-height: 100vh;
    }

    .salesops-page .hero img {
        max-width: 45%;
    }
}

@media screen and (max-width: 480px) {
    .salesops-page .hero {
        margin-top: 0;
        min-height: 100vh;
    }

    .salesops-page .hero img {
        max-width: 50%;
    }
}

body.revops-page {
    background-color: transparent;
}

.revops-page .site-content {
    background-color: transparent;
    padding: 0;
    margin: 0;
    padding-top: 0;
}

body.salesops-page {
    background-color: transparent;
}

.salesops-page .site-content {
    background-color: transparent;
    padding: 0;
    margin: 0;
    padding-top: 0;
}

body.process-training-page {
    background-color: transparent;
}

.process-training-page .site-content {
    background-color: transparent;
    padding: 0;
    margin: 0;
    padding-top: 0;
}

/* AI Process Page Styles */
body.ai-process-page {
    background: url('../assets/back1.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
}

.ai-process-page .site-content {
    padding-top: 0;
    margin-top: 0;
}

.ai-process-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 6rem;
}

.ai-process-section {
    background: rgba(33, 33, 33, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 3rem;
    margin: 2rem 0;
    color: #fff;
}

.ai-process-content {
    max-width: 800px;
    margin: 0 auto;
}

.ai-process-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #E85A33;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ai-process-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.ai-process-checklist {
    margin: 2rem 0;
}

.ai-process-checklist ul {
    list-style: none;
    padding: 0;
}

.ai-process-checklist li {
    background: rgba(0, 0, 0, 0.7);
    padding: 1.2rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    position: relative;
    padding-left: 3rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.ai-process-checklist li:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.8);
}

.ai-process-checklist li:before {
    content: "✓";
    position: absolute;
    left: 1.2rem;
    color: #E85A33;
    font-weight: bold;
}

.ai-process-outcome {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.ai-process-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #333;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
}

.ai-process-footer p {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 500;
}

.beacon-logo {
    max-width: 150px;
    margin-top: 1rem;
    transition: transform 0.3s ease;
    filter: brightness(0.9);
}

.beacon-logo:hover {
    transform: scale(1.05);
}

/* Process Page Styles */
.process-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    background-color: transparent;
}

.process-page .hero {
    background-image: url('../assets/back2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 1.5rem 1.5rem;
    position: relative;
}

.process-page .hero img {
    max-width: 80%;
    height: auto;
    animation: fadeInScale 1.5s ease-out;
}

@media screen and (max-width: 768px) {
    .process-page .hero {
        padding: 4rem 1.5rem 1.5rem;
    }

    .process-page .hero img {
        max-width: 90%;
    }
}

@media screen and (max-width: 480px) {
    .process-page .hero {
        padding: 3.5rem 1rem 1rem;
    }

    .process-page .hero img {
        max-width: 95%;
    }
}

/* CPO Page Styles */
.cpo-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    background-color: transparent;
}

.cpo-page .site-content {
    padding-top: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
}

.cpo-section {
    width: 100%;
    min-height: 100vh;
    padding: 4rem 2rem;
    background-image: url('../assets/back2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-sizing: border-box;
}

.cpo-content {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cpo-title {
    color: #E85A33;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CPO Team Overview Styles */
.cpo-team-overview {
    margin-bottom: 3rem;
    text-align: center;
}

.cpo-team-title {
    color: #E85A33;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cpo-team-description {
    color: #ffffff;
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.cpo-team-resources {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.cpo-intro p {
    color: #ffffff;
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.cpo-quote {
    background: rgba(0, 0, 0, 0.7);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cpo-quote p {
    color: #ffffff;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.cpo-conclusion p {
    color: #ffffff;
    font-size: 1.4rem;
    line-height: 1.8;
    margin-top: 2.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

/* CPO Profile Styles */
.cpo-profile {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.cpo-photo {
    flex-shrink: 0;
}

.jess-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 4px solid #fff;
}

.cpo-bio {
    flex: 1;
}

.cpo-bio h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #E85A33;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cpo-credentials {
    font-size: 1.2rem;
    color: #2D7D7D;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cpo-bio p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.cpo-team-info {
    margin-bottom: 3rem;
    text-align: left;
}

.cpo-team-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
}

.cpo-box {
    background: rgba(0, 0, 0, 0.7);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cpo-box h3 {
    color: #E85A33;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cpo-box p {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1024px) {
    .cpo-page .site-content {
        padding-top: 0;
    }

    .cpo-section {
        padding: 6rem 1.5rem 2rem;
        min-height: auto;
    }

    .cpo-content {
        padding: 2rem;
    }

    .cpo-title {
        font-size: 2.8rem;
    }

    .cpo-team-title {
        font-size: 2.2rem;
    }

    .cpo-team-description {
        font-size: 1.2rem;
    }

    .cpo-team-resources {
        font-size: 1.1rem;
    }

    .cpo-intro p {
        font-size: 1.3rem;
    }

    .cpo-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .jess-photo {
        width: 180px;
        height: 180px;
    }

    .cpo-bio h2 {
        font-size: 2rem;
    }

    .cpo-credentials {
        font-size: 1.1rem;
    }

    .cpo-bio p {
        font-size: 1rem;
    }

    .cpo-team-info p {
        font-size: 1rem;
    }

    .cpo-quote {
        padding: 2rem;
    }

    .cpo-quote p {
        font-size: 1.4rem;
    }

    .cpo-conclusion p {
        font-size: 1.3rem;
    }

    .cpo-box {
        padding: 2rem;
    }

    .cpo-box h3 {
        font-size: 1.6rem;
    }

    .cpo-box p {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .cpo-page .site-content {
        padding-top: 0;
    }

    .cpo-section {
        padding: 5rem 1rem 1.5rem;
        min-height: auto;
    }

    .cpo-content {
        padding: 1.5rem;
    }

    .cpo-title {
        font-size: 2.2rem;
    }

    .cpo-team-title {
        font-size: 1.8rem;
    }

    .cpo-team-description {
        font-size: 1.1rem;
    }

    .cpo-team-resources {
        font-size: 1rem;
    }

    .cpo-intro p {
        font-size: 1.2rem;
    }

    .cpo-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .jess-photo {
        width: 150px;
        height: 150px;
    }

    .cpo-bio h2 {
        font-size: 1.8rem;
    }

    .cpo-credentials {
        font-size: 1rem;
    }

    .cpo-bio p {
        font-size: 0.95rem;
    }

    .cpo-team-info p {
        font-size: 0.95rem;
    }

    .cpo-quote {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .cpo-quote p {
        font-size: 1.2rem;
    }

    .cpo-conclusion p {
        font-size: 1.2rem;
        margin-top: 2rem;
    }

    .cpo-box {
        padding: 1.5rem;
    }

    .cpo-box h3 {
        font-size: 1.4rem;
    }

    .cpo-box p {
        font-size: 1rem;
    }
}

/* Process Page Floating Quote */
.floating-quote {
    position: relative;
    max-width: 900px;
    margin: 5rem auto 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-quote:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.floating-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 120px;
    font-family: 'Playfair Display', serif;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
}

.floating-quote blockquote {
    margin: 0;
    padding: 0;
    font-size: 2rem;
    line-height: 1.4;
    font-style: italic;
    color: #1a1a1a;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .floating-quote {
        margin: 5rem auto 3rem;
        padding: 2rem;
    }
    
    .floating-quote blockquote {
        font-size: 1.5rem;
    }

    .floating-quote::before {
        font-size: 80px;
        top: -15px;
        left: 20px;
    }
}

.site-content {
    padding-top: 0;
    margin-top: 0;
} 
