/* About Page Specific Styles */

/* Active Navigation Link */
.nav-menu a.active {
    color: #ff6b35;
    font-weight: 600;
}

/* About Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, #e8d5f2 0%, #d4c5e8 50%, #f5e6d3 100%);
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    animation: fadeInUp 0.8s ease;
}

.about-hero-subtitle {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.highlight-text {
    color: #ff6b35;
}

.about-hero-tagline {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.about-hero-description {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-inquire-about {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    animation: fadeInUp 0.8s ease 0.8s both;
}

.btn-inquire-about:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.btn-inquire-about svg {
    transition: transform 0.3s ease;
}

.btn-inquire-about:hover svg {
    transform: translateX(5px);
}

/* Who We Are Section */
.who-we-are-section {
    background: white;
    padding: 100px 0;
}

.section-title-center {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.section-subtitle {
    font-size: 17px;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.expertise-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.expertise-subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.expertise-layout {
    display: grid;
    grid-template-columns: 1fr 400px 1fr;
    gap: 40px;
    align-items: center;
}

.expertise-left,
.expertise-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.expertise-card {
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.expertise-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #ff6b35;
}

.expertise-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.agency-image-container {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

.agency-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.agency-image-container:hover::before {
    opacity: 1;
}

.agency-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.agency-image-container:hover img {
    transform: scale(1.1) rotate(2deg);
}

/* What Makes Us Different Section */
.different-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 100px 0;
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.different-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.different-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff6b35, #ff8c5a);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.different-card:hover::before {
    transform: scaleX(1);
}

.different-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.card-number {
    font-size: 48px;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.card-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Mission Section */
.mission-section {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.mission-text {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 20px;
}

/* Who We Work With Section */
.work-with-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 100px 0;
}

.work-with-card {
    background: white;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.work-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.work-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 17px;
    color: #333;
    font-weight: 500;
}

.check-icon {
    flex-shrink: 0;
}

.work-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

/* Our Approach Section */
.approach-section {
    background: white;
    padding: 100px 0;
}

.approach-steps {
    max-width: 900px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.approach-step {
    display: flex;
    gap: 0;
    transition: all 0.3s ease;
}

.step-border {
    width: 5px;
    background: linear-gradient(180deg, #ff6b35 0%, #ff8c5a 100%);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.approach-step:hover .step-border {
    width: 8px;
}

.step-content {
    flex: 1;
    background: white;
    padding: 30px 40px;
    border-radius: 0 15px 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.approach-step:hover .step-content {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.step-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 40px;
}

.btn-cta {
    background: white;
    color: #667eea;
    border: none;
    padding: 18px 50px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #ff6b35;
    color: white;
}

/* Responsive Design */

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
    .about-hero-title {
        font-size: 48px;
    }
    
    .about-hero-subtitle {
        font-size: 28px;
    }
    
    .about-hero-tagline {
        font-size: 24px;
    }
    
    .expertise-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .agency-image-container {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }
    
    .different-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    .about-hero-section {
        padding: 80px 0 60px;
    }
    
    .about-hero-title {
        font-size: 38px;
    }
    
    .about-hero-subtitle {
        font-size: 24px;
    }
    
    .about-hero-tagline {
        font-size: 20px;
    }
    
    .section-title-center {
        font-size: 36px;
    }
    
    .expertise-title {
        font-size: 28px;
    }
    
    .different-grid {
        grid-template-columns: 1fr;
    }
    
    .work-with-card {
        padding: 40px 30px;
    }
    
    .cta-title {
        font-size: 32px;
    }
}

/* Mobile Portrait (480px) */
@media (max-width: 480px) {
    .about-hero-section {
        padding: 60px 0 50px;
    }
    
    .about-hero-title {
        font-size: 32px;
    }
    
    .about-hero-subtitle {
        font-size: 20px;
    }
    
    .about-hero-tagline {
        font-size: 18px;
    }
    
    .about-hero-description {
        font-size: 15px;
    }
    
    .section-title-center {
        font-size: 28px;
    }
    
    .expertise-title {
        font-size: 24px;
    }
    
    .agency-image-container {
        width: 250px;
        height: 250px;
    }
    
    .work-with-card {
        padding: 30px 20px;
    }
    
    .step-content {
        padding: 20px 25px;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .cta-description {
        font-size: 16px;
    }
}
