/* Approach Page - Enhanced Design */

/* Reference Hero Section */
.ref-hero {
    background: linear-gradient(135deg, #19365f 0%, #142a4a 50%, #fbc213 100%);
    color: white;
    min-height: 70vh;
    /* Account for fixed navbar height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ref-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.ref-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ref-hero h1 {
    font-size: clamp(4rem, 8vw, 4rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive Hero Font Sizes */
@media (max-width: 1536px) {
    .ref-hero h1 {
        font-size: clamp(3.5rem, 8vw, 3.5rem);
    }
}

@media (max-width: 1280px) {
    .ref-hero h1 {
        font-size: clamp(3rem, 8vw, 3rem);
    }
}

@media (max-width: 1024px) {
    .ref-hero h1 {
        font-size: clamp(2.5rem, 8vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    .ref-hero h1 {
        font-size: clamp(2rem, 8vw, 2rem);
    }
}

@media (max-width: 640px) {
    .ref-hero h1 {
        font-size: clamp(1.8rem, 8vw, 1.8rem);
    }
}

@media (max-width: 480px) {
    .ref-hero h1 {
        font-size: clamp(2rem, 8vw, 2rem);
    }

    .slider-slide {
        width: 100%;
        min-width: 100%;
        flex-shrink: 0;
    }
}

@media (max-width: 360px) {
    .ref-hero h1 {
        font-size: clamp(1.2rem, 8vw, 1.2rem);
    }
}

/* Reference Content Section */
.ref-content-section {
    padding: 100px 0;
    position: relative;
}

.ref-content-section.dark-bg {
    background: #1a1a1a;
    color: var(--white);
}

.ref-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.ref-text-block h3 {
    color: var(--white);
    margin: 0 0 2rem 0;
    font-family: var(--font-bold);
    line-height: 1.2;
}

.ref-text-block p {
    line-height: 1.7;
    color: #e2e8f0;
    margin: 0 0 1.5rem 0;
}

.ref-text-block p:last-child {
    margin-bottom: 0;
}

/* Marketing Strategy Section */
.strategy-showcase {
    padding:60px 0;
    background: #ffffff;
}

.strategy-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.strategy-description {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid #e9ecef;
}

.strategy-description p {
    line-height: 1.7;
    color: #334155;
    margin: 0 0 2rem 0;
}

.strategy-cta {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    text-align: center;
}

.strategy-cta p {
    color: #334155;
    margin: 0 0 1.5rem 0;
}

.expertise-showcase {
    background: linear-gradient(135deg, #19365f 0%, #142a4a 100%);
    padding: 3rem;
    border-radius: 16px;
    color: white;
}

.expertise-showcase h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 2rem 0;
    color: #fbc213;
    font-family: var(--font-bold);
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.expertise-item:hover {
    background: rgba(251, 194, 19, 0.2);
    transform: translateX(10px);
}

.expertise-item i {
    font-size: 1.2rem;
    color: #fbc213;
    width: 20px;
    text-align: center;
}

.expertise-item span {
    font-size: 1rem;
    font-weight: 500;
    color: white;
}

/* Data & Analytics Section */
.analytics-showcase {
    padding: 100px 0;
    background: #ffffff;
}

.analytics-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.analytics-description {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid #e9ecef;
}

.analytics-description p {
    line-height: 1.7;
    color: #334155;
    margin: 0 0 2rem 0;
}

.analytics-cta {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    text-align: center;
}

.analytics-cta p {
    font-size: 1rem;
    color: #334155;
    margin: 0 0 1.5rem 0;
}

.analytics-expertise {
    background: linear-gradient(135deg, #19365f 0%, #142a4a 100%);
    padding: 3rem;
    border-radius: 16px;
    color: white;
}

.analytics-expertise h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 2rem 0;
    color: #fbc213;
    font-family: var(--font-bold);
}

.analytics-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.analytics-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.analytics-item:hover {
    background: rgba(251, 194, 19, 0.2);
    transform: translateX(10px);
}

.analytics-item i {
    font-size: 1.2rem;
    color: #fbc213;
    width: 20px;
    text-align: center;
}

.analytics-item span {
    font-size: 1rem;
    font-weight: 500;
    color: white;
}

/* Marketing Strategy Section - Clean Design */
.services-showcase {
    padding: 100px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #19365f;
    margin: 0 0 1rem 0;
    font-family: var(--font-bold);
}

.section-header p {
    color: #64748b;
    margin: 0;
}

.strategy-content {
    max-width: 900px;
    margin: 0 auto;
}

.strategy-description {
    background: #f8f9fa;
    padding: 4rem 3rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.strategy-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #334155;
    margin: 0 0 2.5rem 0;
}

.strategy-cta {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.strategy-cta p {
    color: #334155;
    margin: 0 0 1.5rem 0;
}

.strategy-cta .btn {
    background: #19365f;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.strategy-cta .btn:hover {
    background: #fbc213;
    color: #19365f;
    transform: translateY(-2px);
}

/* Expertise Section - Clean Design */
.process-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.process-section .section-header h2 {
    color: #19365f;
}

.process-section .section-header p {
    color: #64748b;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-card {
    padding: 2.5rem 2rem;
    text-align: center;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #fbc213;
}

.expertise-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem auto;
    background: #19365f;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon {
    background: #fbc213;
}

.expertise-icon i {
    font-size: 1.8rem;
    color: white;
    transition: color 0.3s ease;
}

.expertise-card:hover .expertise-icon i {
    color: #19365f;
}

.expertise-card h3 {
    color: #19365f;
    margin: 0;
    line-height: 1.4;
}


/* Responsive Design for Reference Sections */
@media (max-width: 1024px) {
    .ref-hero {
        min-height: 80vh;
    }
    
    .ref-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Typography will scale automatically with clamp() */
}

@media (max-width: 768px) {
    .ref-hero {
        min-height: 80vh;
        }
    
    .ref-content-section {
        padding: 80px 0;
    }
    
    .ref-content-grid {
        gap: 2.5rem;
    }
    
    /* Typography will scale automatically with clamp() */
}

@media (max-width: 480px) {
    .ref-hero {
        min-height: 50vh;
        }
    
    .ref-content-section {
        padding: 60px 0;
    }
    
    /* Typography will scale automatically with clamp() */
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .strategy-content-wrapper,
    .analytics-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .strategy-description,
    .analytics-description {
        padding: 2.5rem;
    }
    
    .expertise-showcase,
    .analytics-expertise {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .strategy-showcase,
    .analytics-showcase {
        padding: 80px 0;
    }
    
    .strategy-content-wrapper,
    .analytics-content-wrapper {
        gap: 2.5rem;
    }
    
    .strategy-description,
    .analytics-description {
        padding: 2rem;
    }
    
    .strategy-cta,
    .analytics-cta {
        padding: 1.5rem;
    }
    
    .expertise-showcase,
    .analytics-expertise {
        padding: 2rem;
    }
    
    .expertise-showcase h3,
    .analytics-expertise h3 {
        font-size: 1.6rem;
    }
    
    .expertise-item,
    .analytics-item {
        padding: 0.8rem;
    }
    
    .expertise-item span,
    .analytics-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .strategy-showcase,
    .analytics-showcase {
        padding: 60px 0;
    }
    
    .strategy-description,
    .analytics-description {
        padding: 1.5rem;
    }
    
    .strategy-cta,
    .analytics-cta {
        padding: 1.5rem;
    }
    
    .expertise-showcase,
    .analytics-expertise {
        padding: 1.5rem;
    }
    
    .expertise-showcase h3,
    .analytics-expertise h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .expertise-list,
    .analytics-list {
        gap: 1rem;
    }
    
    .expertise-item,
    .analytics-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .expertise-item i,
    .analytics-item i {
        font-size: 1rem;
    }
    
    .expertise-item span,
    .analytics-item span {
        font-size: 0.85rem;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .strategy-description {
        padding: 3rem 2.5rem;
    }
    
    .strategy-description p {
        font-size: 1.1rem;
    }
    
    .strategy-cta {
        padding: 2rem;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
    
    .expertise-card {
        padding: 2rem 1.5rem;
    }
    
    .expertise-icon {
        width: 60px;
        height: 60px;
    }
    
    .expertise-icon i {
        font-size: 1.5rem;
    }
    
    .expertise-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .services-showcase,
    .process-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .strategy-description {
        padding: 2.5rem 2rem;
    }
    
    .strategy-description p {
        font-size: 1rem;
    }
    
    .strategy-cta {
        padding: 1.5rem;
    }
    
    .strategy-cta p {
        font-size: 1rem;
    }
    
    .strategy-cta .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .expertise-card {
        padding: 2rem 1.5rem;
    }
    
    .expertise-icon {
        width: 60px;
        height: 60px;
    }
    
    .expertise-icon i {
        font-size: 1.5rem;
    }
    
    .expertise-card h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .services-showcase,
    .process-section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .strategy-description {
        padding: 2rem 1.5rem;
    }
    
    .strategy-description p {
        font-size: 0.95rem;
    }
    
    .strategy-cta {
        padding: 1.5rem;
    }
    
    .strategy-cta p {
        font-size: 0.95rem;
    }
    
    .strategy-cta .btn {
        font-size: 0.95rem;
        padding: 0.8rem 1.5rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .expertise-card {
        padding: 1.5rem;
    }
    
    .expertise-icon {
        width: 50px;
        height: 50px;
    }
    
    .expertise-icon i {
        font-size: 1.3rem;
    }
    
    .expertise-card h3 {
        font-size: 0.95rem;
    }
}

/* ========================================
   FOOTER SIZE REDUCTION
   ======================================== */

/* Footer Logo Size Reduction */
.footer-brand .logo {
    height: 100px !important; /* Reduced from 150px */
    width: 140px !important; /* Reduced from 200px */
}

/* Footer Paragraph Spacing Reduction */
.footer-brand p {
    margin-bottom: 1rem !important; /* Reduced from 2rem */
}
