/* ========================================
   COMMON STYLES - Shared across all pages
   ======================================== */

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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
}

/* Common Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo, .logo_light {
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1001;
}

.logo span, .logo_light span {
    color: #FDB714;
}

.logo-svg {
    height: 35px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #FDB714;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hide mobile CTA by default */
.mobile-cta {
    display: none;
}

.desktop-cta {
    display: inline-block;
}

/* Navigation CTA Button */
.nav-cta-button {
    background: linear-gradient(135deg, #F5B21A 0%, #ffca3a 100%);
    color: #000;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(245, 178, 26, 0.3);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.nav-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 178, 26, 0.4);
}

/* Light version for white headers */
.nav-cta-button-light {
    background: #FDB714;
    color: #fff;
    border: 2px solid #FDB714;
}

.nav-cta-button-light:hover {
    background: #ffca3a;
    border-color: #ffca3a;
    color: #000;
}

/* Common Footer Styles */
footer {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 3rem 2rem 1.5rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: #FDB714;
}

.footer-description {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #aaa;
    line-height: 1.8;
}

.social-links, .footer-social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-links a, .footer-social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover, .footer-social-links a:hover {
    background: #FDB714;
    transform: translateY(-3px);
}

.copyright {
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

/* Common Buttons */
.btn-primary {
    background: linear-gradient(135deg, #F5B21A 0%, #ffca3a 100%);
    color: #000;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(245, 178, 26, 0.4);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(245, 178, 26, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    border: 2px solid #F5B21A;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(245, 178, 26, 0.1);
    transform: translateY(-3px);
}

.cta-button {
    display: inline-block;
    background: #FDB714;
    color: #fff;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(253, 183, 20, 0.4);
}

.cta-button:hover {
    background: #ffca3a;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(253, 183, 20, 0.5);
}

/* ========================================
   WELCOME PAGE STYLES
   ======================================== */

.page-welcome body {
    overflow-x: hidden;
}

.page-welcome .navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(245, 178, 26, 0.2);
}

.page-welcome .navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.page-welcome .logo_light {
    color: #ffffffff;
}

.page-welcome .nav-menu a {
    color: #fff;
}

.page-welcome .nav-menu a:hover,
.page-welcome .nav-menu a.active {
    color: #F5B21A;
}

.page-welcome .nav-cta {
    background: linear-gradient(135deg, #F5B21A 0%, #ffca3a 100%);
    color: #000 !important;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(245, 178, 26, 0.3);
}

.page-welcome .nav-cta:hover {
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 178, 26, 0.4);
}

.page-welcome .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem 4rem;
}

.page-welcome .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(245, 178, 26, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 178, 26, 0.08) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.page-welcome .hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.page-welcome .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.page-welcome .hero-content h1 .highlight {
    color: #F5B21A;
    display: block;
}

.page-welcome .hero-content .subtitle {
    font-size: 1.3rem;
    color: #aaa;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.page-welcome .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.page-welcome .stat-item {
    text-align: left;
}

.page-welcome .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #F5B21A;
    display: block;
    line-height: 1;
}

.page-welcome .stat-label {
    color: #888;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.page-welcome .hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.page-welcome .hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-welcome .hero-logo-large {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #F5B21A 0%, #ffca3a 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15rem;
    color: #000;
    font-weight: 900;
    box-shadow: 0 20px 60px rgba(245, 178, 26, 0.3);
    animation: float 6s ease-in-out infinite;
    position: relative;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.page-welcome .tech-badges {
    position: absolute;
    width: 100%;
    height: 100%;
}

.page-welcome .tech-badge {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #F5B21A;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #F5B21A;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.page-welcome .tech-badge:nth-child(1) {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.page-welcome .tech-badge:nth-child(2) {
    right: -30px;
    top: 30%;
    animation-delay: 0.5s;
}

.page-welcome .tech-badge:nth-child(3) {
    left: -30px;
    top: 30%;
    animation-delay: 1s;
}

.page-welcome .tech-badge:nth-child(4) {
    bottom: -10px;
    left: 20%;
    animation-delay: 1.5s;
}

.page-welcome .tech-badge:nth-child(5) {
    bottom: -10px;
    right: 20%;
    animation-delay: 2s;
}

.page-welcome .services-preview {
    padding: 6rem 2rem;
    background: #fff;
}

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

.page-welcome .section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.page-welcome .section-header h2 span {
    color: #C88F00;
}

.page-welcome .section-header p {
    font-size: 1.2rem;
    color: #3d3d3d;
    max-width: 700px;
    margin: 0 auto;
}

.page-welcome .services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.page-welcome .service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.page-welcome .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #F5B21A 0%, #ffca3a 100%);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.page-welcome .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    border-color: #F5B21A;
}

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

.page-welcome .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #F5B21A 0%, #ffca3a 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(245, 178, 26, 0.3);
}

.page-welcome .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.page-welcome .service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.page-welcome .service-link {
    color: #F5B21A;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.page-welcome .service-link:hover {
    gap: 1rem;
}

.page-welcome .location-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: #fff;
}

.page-welcome .location-container {
    max-width: 1400px;
    margin: 0 auto;
}

.page-welcome .location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.page-welcome .location-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(245, 178, 26, 0.2);
    transition: all 0.3s;
}

.page-welcome .location-card:hover {
    background: rgba(245, 178, 26, 0.1);
    border-color: #F5B21A;
    transform: translateY(-5px);
}

.page-welcome .location-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #F5B21A;
}

.page-welcome .location-card p {
    color: #aaa;
    line-height: 1.8;
}

.page-welcome .why-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.page-welcome .why-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.page-welcome .why-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
}

.page-welcome .why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-welcome .why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.page-welcome .why-card p {
    color: #666;
    line-height: 1.7;
}

.page-welcome .cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #F5B21A 0%, #ffca3a 100%);
    text-align: center;
}

.page-welcome .cta-section h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
}

.page-welcome .cta-section p {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-welcome .cta-section .btn-primary {
    background: #000;
    color: #F5B21A;
}

.page-welcome .cta-section .btn-primary:hover {
    background: #1a1a1a;
}

.page-welcome footer {
    background: #000;
    padding: 4rem 2rem 2rem;
}

.page-welcome .footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.page-welcome .footer-about h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.page-welcome .footer-about span {
    color: #F5B21A;
}

.page-welcome .footer-about p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.page-welcome .social-link {
    width: 45px;
    height: 45px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5B21A;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid #F5B21A;
}

.page-welcome .social-link:hover {
    background: #F5B21A;
    color: #000;
    transform: translateY(-3px);
}

.page-welcome .footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #F5B21A;
}

.page-welcome .footer-links ul {
    list-style: none;
}

.page-welcome .footer-links a {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.page-welcome .footer-links a:hover {
    color: #F5B21A;
}

.page-welcome .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #888;
}

@media (max-width: 1200px) {
    .page-welcome .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .page-welcome .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .page-welcome .hero-stats {
        justify-content: center;
    }
    
    .page-welcome .hero-buttons {
        justify-content: center;
    }
    
    .page-welcome .hero-visual {
        margin-top: 3rem;
    }
    
    .page-welcome .hero-logo-large {
        width: 300px;
        height: 300px;
        font-size: 10rem;
    }
}

@media (max-width: 768px) {
    .page-welcome .nav-menu {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .page-welcome .nav-cta {
        padding: 0.6rem 1.2rem;
    }
    
    .page-welcome .hero-content h1 {
        font-size: 2rem;
    }
    
    .page-welcome .hero-content .subtitle {
        font-size: 1.1rem;
    }
    
    .page-welcome .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .page-welcome .stat-item {
        text-align: center;
    }
    
    .page-welcome .section-header h2 {
        font-size: 2rem;
    }
    
    .page-welcome .services-grid {
        grid-template-columns: 1fr;
    }
    
    .page-welcome .footer-container {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

.page-services .navbar {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-services .logo {
    color: #333;
}

.page-services .nav-menu a {
    color: #333;
}

.page-services .nav-menu a:hover,
.page-services .nav-menu a.active {
    color: #FDB714;
}

.page-services .hero {
    margin-top: 80px;
    padding: 4rem 2rem 3rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.page-services .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #333;
}

.page-services .hero h1 span {
    color: #FDB714;
    font-weight: 700;
}

.page-services .hero p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.page-services .tech-stack {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.page-services .tech-badge {
    background: #FDB714;
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(253, 183, 20, 0.3);
}

.page-services .services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-services .service-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid #FDB714;
}

.page-services .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

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

.page-services .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FDB714 0%, #ffca3a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(253, 183, 20, 0.3);
}

.page-services .service-header h2 {
    font-size: 1.8rem;
    color: #333;
}

.page-services .service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.page-services .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.page-services .feature-item {
    display: flex;
    align-items: start;
    gap: 0.8rem;
}

.page-services .feature-item::before {
    content: "✓";
    color: #FDB714;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.page-services .technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.page-services .tech-tag {
    background: #f8f9fa;
    color: #333;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid #e9ecef;
}

.page-services .cta-section {
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 3rem;
}

.page-services .cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-services .cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .page-services .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .page-services .hero h1 {
        font-size: 2rem;
    }
    
    .page-services .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    .page-services .features {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PORTFOLIO PAGE STYLES
   ======================================== */

.page-portfolio .navbar {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-portfolio .logo {
    color: #333;
}

.page-portfolio .nav-menu a {
    color: #333;
}

.page-portfolio .nav-menu a:hover,
.page-portfolio .nav-menu a.active {
    color: #FDB714;
}

.page-portfolio .hero {
    margin-top: 80px;
    padding: 5rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.page-portfolio .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #333;
}

.page-portfolio .hero h1 span {
    color: #FDB714;
    font-weight: 700;
}

.page-portfolio .hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.page-portfolio .stats-bar {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.page-portfolio .stat-item {
    text-align: center;
}

.page-portfolio .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FDB714;
    display: block;
}

.page-portfolio .stat-label {
    color: #666;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.page-portfolio .partners-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-portfolio .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-portfolio .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.page-portfolio .section-header h2 span {
    color: #FDB714;
}

.page-portfolio .section-header p {
    color: #666;
    font-size: 1.1rem;
}

.page-portfolio .partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.page-portfolio .partner-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.page-portfolio .partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FDB714 0%, #ffca3a 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.page-portfolio .partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.page-portfolio .partner-card:hover::before {
    transform: scaleX(1);
}

.page-portfolio .partner-logo-img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.page-portfolio .partner-card:hover .partner-logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

.page-portfolio .partner-placeholder {
    width: 180px;
    height: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #999;
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem;
    transition: all 0.3s ease;
}

.page-portfolio .partner-card:hover .partner-placeholder {
    background: linear-gradient(135deg, #FDB714 0%, #ffca3a 100%);
    color: #fff;
}

.page-portfolio .industry-section {
    margin-bottom: 4rem;
}

.page-portfolio .industry-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.page-portfolio .industry-header h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.page-portfolio .industry-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FDB714 0%, #ffca3a 100%);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.page-portfolio .cta-section {
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.page-portfolio .cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-portfolio .cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .page-portfolio .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .page-portfolio .hero h1 {
        font-size: 2rem;
    }
    
    .page-portfolio .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .page-portfolio .stats-bar {
        gap: 2rem;
    }
    
    .page-portfolio .stat-number {
        font-size: 2rem;
    }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.page-contact .navbar {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-contact .logo {
    color: #333;
}

.page-contact .nav-menu a {
    color: #333;
}

.page-contact .nav-menu a:hover,
.page-contact .nav-menu a.active {
    color: #FDB714;
}

.page-contact .hero {
    margin-top: 80px;
    padding: 5rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.page-contact .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #333;
}

.page-contact .hero h1 span {
    color: #FDB714;
    font-weight: 700;
}

.page-contact .hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.page-contact .contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-contact .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.page-contact .contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.page-contact .contact-info h2 span {
    color: #FDB714;
}

.page-contact .contact-info p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.page-contact .info-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s;
}

.page-contact .info-item:hover {
    transform: translateX(5px);
}

.page-contact .info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FDB714 0%, #ffca3a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
}

.page-contact .info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.page-contact .info-content p {
    color: #666;
    margin: 0;
}

.page-contact .info-content a {
    color: #FDB714;
    text-decoration: none;
    font-weight: 500;
}

.page-contact .info-content a:hover {
    text-decoration: underline;
}

.page-contact .social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #FDB714 0%, #ffca3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(253, 183, 20, 0.3);
}

.page-contact .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(253, 183, 20, 0.4);
}

.page-contact .contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.page-contact .contact-form h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.page-contact .form-group {
    margin-bottom: 1.5rem;
}

.page-contact .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.page-contact .form-group input,
.page-contact .form-group select,
.page-contact .form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.page-contact .form-group input:focus,
.page-contact .form-group select:focus,
.page-contact .form-group textarea:focus {
    outline: none;
    border-color: #FDB714;
}

.page-contact .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.page-contact .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.page-contact .submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #FDB714 0%, #ffca3a 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(253, 183, 20, 0.3);
    font-family: 'Poppins', sans-serif;
}

.page-contact .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(253, 183, 20, 0.4);
}

.page-contact .success-message {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #c3e6cb;
}

.page-contact .map-section {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

.page-contact .map-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-contact .map-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.page-contact .map-container h2 span {
    color: #FDB714;
}

.page-contact .map-container p {
    color: #666;
    margin-bottom: 2rem;
}

.page-contact .map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.page-contact .faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-contact .faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-contact .faq-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.page-contact .faq-header h2 span {
    color: #FDB714;
}

.page-contact .faq-item {
    background: #fff;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.3s;
}

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

.page-contact .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.page-contact .faq-icon {
    color: #FDB714;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.page-contact .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #666;
    padding-top: 0;
}

.page-contact .faq-answer.active {
    max-height: 500px;
    padding-top: 1rem;
}

@media (max-width: 968px) {
    .page-contact .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .page-contact .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-contact .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .page-contact .hero h1 {
        font-size: 2rem;
    }
}

/* ========================================
   BOOKMEETING PAGE STYLES
   ======================================== */

.page-bookmeeting body {
    background: #f8f9fa;
}

.page-bookmeeting .navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.page-bookmeeting .nav-container {
    max-width: 1400px;
    padding: 0 2rem;
}

.page-bookmeeting .logo-svg {
    height: 40px;
}

.page-bookmeeting .back-link {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-bookmeeting .back-link:hover {
    color: #F5B21A;
}

.page-bookmeeting .booking-container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 2rem;
    min-height: calc(100vh - 200px);
}

.page-bookmeeting .booking-info {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: fit-content;
}

.page-bookmeeting .host-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.page-bookmeeting .host-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F5B21A 0%, #ffca3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #000;
    font-weight: 700;
}

.page-bookmeeting .host-details h2 {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
    color: #333;
}

.page-bookmeeting .host-details p {
    color: #666;
    font-size: 0.9rem;
}

.page-bookmeeting .meeting-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.page-bookmeeting .meeting-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.page-bookmeeting .detail-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.page-bookmeeting .detail-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.page-bookmeeting .detail-text h4 {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.page-bookmeeting .detail-text p {
    font-size: 1.05rem;
    color: #333;
    font-weight: 600;
}

.page-bookmeeting .meeting-description {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

.page-bookmeeting .calendar-section {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.page-bookmeeting .calendar-header h3 {
    font-size: 1.5rem;
    color: #333;
}

.page-bookmeeting .month-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.page-bookmeeting .month-display {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    min-width: 180px;
    text-align: center;
}

.page-bookmeeting .nav-btn {
    width: 35px;
    height: 35px;
    border: 2px solid #e9ecef;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.2rem;
    color: #666;
}

.page-bookmeeting .nav-btn:hover {
    border-color: #F5B21A;
    color: #F5B21A;
    background: #fffbf0;
}

.page-bookmeeting .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.page-bookmeeting .day-header {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #999;
    padding: 0.8rem;
}

.page-bookmeeting .day-cell {
    aspect-ratio: 1;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.page-bookmeeting .day-cell:hover:not(.disabled):not(.other-month) {
    border-color: #F5B21A;
    background: #fffbf0;
}

.page-bookmeeting .day-cell.selected {
    background: #F5B21A;
    color: #000;
    border-color: #F5B21A;
    font-weight: 700;
}

.page-bookmeeting .day-cell.today {
    border-color: #F5B21A;
    color: #F5B21A;
    font-weight: 700;
}

.page-bookmeeting .day-cell.disabled {
    color: #ddd;
    cursor: not-allowed;
    background: #f8f9fa;
}

.page-bookmeeting .day-cell.other-month {
    color: #ddd;
}

.page-bookmeeting .time-slots-section {
    border-top: 1px solid #e9ecef;
    padding-top: 2rem;
}

.page-bookmeeting .time-slots-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.page-bookmeeting .time-slots-header h4 {
    font-size: 1.1rem;
    color: #333;
}

.page-bookmeeting .timezone-select {
    padding: 0.6rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    color: #666;
}

.page-bookmeeting .time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 0.8rem;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.page-bookmeeting .time-slot {
    padding: 0.9rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: #666;
    transition: all 0.2s;
}

.page-bookmeeting .time-slot:hover {
    border-color: #F5B21A;
    background: #fffbf0;
    color: #F5B21A;
}

.page-bookmeeting .time-slot.selected {
    background: #F5B21A;
    color: #000;
    border-color: #F5B21A;
    font-weight: 700;
}

.page-bookmeeting .no-slots-message {
    text-align: center;
    color: #999;
    padding: 2rem;
    font-size: 0.95rem;
}

.page-bookmeeting .booking-form-section {
    display: none;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.page-bookmeeting .booking-form-section.active {
    display: block;
}

.page-bookmeeting .form-group {
    margin-bottom: 1.5rem;
}

.page-bookmeeting .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.page-bookmeeting .form-group input,
.page-bookmeeting .form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.page-bookmeeting .form-group input:focus,
.page-bookmeeting .form-group textarea:focus {
    outline: none;
    border-color: #F5B21A;
}

.page-bookmeeting .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.page-bookmeeting .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.page-bookmeeting .selected-info {
    background: #fffbf0;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #F5B21A;
}

.page-bookmeeting .selected-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.page-bookmeeting .selected-info strong {
    color: #333;
}

.page-bookmeeting .submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #F5B21A 0%, #ffca3a 100%);
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(245, 178, 26, 0.3);
    font-family: 'Poppins', sans-serif;
}

.page-bookmeeting .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 178, 26, 0.4);
}

.page-bookmeeting .success-message {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    border: 1px solid #c3e6cb;
    text-align: center;
}

.page-bookmeeting .success-message.active {
    display: block;
}

.page-bookmeeting .time-slots-grid::-webkit-scrollbar {
    width: 6px;
}

.page-bookmeeting .time-slots-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.page-bookmeeting .time-slots-grid::-webkit-scrollbar-thumb {
    background: #F5B21A;
    border-radius: 10px;
}

@media (max-width: 1200px) {
    .page-bookmeeting .booking-container {
        grid-template-columns: 1fr;
    }
    
    .page-bookmeeting .booking-info {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-bookmeeting .booking-container {
        padding: 0 1rem;
    }
    
    .page-bookmeeting .booking-info,
    .page-bookmeeting .calendar-section {
        padding: 1.5rem;
    }
    
    .page-bookmeeting .calendar-grid {
        gap: 0.3rem;
    }
    
    .page-bookmeeting .form-row {
        grid-template-columns: 1fr;
    }
    
    .page-bookmeeting .time-slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    }
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

.page-about .navbar {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-about .logo {
    color: #333;
}

.page-about .nav-menu a {
    color: #333;
}

.page-about .nav-menu a:hover,
.page-about .nav-menu a.active {
    color: #FDB714;
}

.page-about .hero {
    margin-top: 80px;
    padding: 5rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.page-about .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #333;
}

.page-about .hero h1 span {
    color: #FDB714;
    font-weight: 700;
}

.page-about .hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.page-about .story-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-about .story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.page-about .story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.page-about .story-text h2 span {
    color: #FDB714;
}

.page-about .story-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.page-about .story-image {
    background: linear-gradient(135deg, #FDB714 0%, #ffca3a 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(253, 183, 20, 0.2);
}

.page-about .story-image h3 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.page-about .story-image p {
    color: #fff;
    font-size: 1.2rem;
}

.page-about .stats-section {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.page-about .stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.page-about .stat-item h3 {
    font-size: 3.5rem;
    color: #FDB714;
    margin-bottom: 0.5rem;
}

.page-about .stat-item p {
    font-size: 1.2rem;
    color: #aaa;
}

.page-about .values-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-about .values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-about .values-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.page-about .values-header h2 span {
    color: #FDB714;
}

.page-about .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.page-about .value-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    border-top: 4px solid #FDB714;
}

.page-about .value-card:hover {
    transform: translateY(-5px);
}

.page-about .value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-about .value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.page-about .value-card p {
    color: #666;
    line-height: 1.8;
}

.page-about .team-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 2rem;
}

.page-about .team-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-about .team-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.page-about .team-container h2 span {
    color: #FDB714;
}

.page-about .team-container p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-about .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.page-about .team-member {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.page-about .team-member:hover {
    transform: translateY(-5px);
}

.page-about .team-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #FDB714 0%, #ffca3a 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
}

.page-about .team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.page-about .team-member .role {
    color: #FDB714;
    font-weight: 600;
    margin-bottom: 1rem;
}

.page-about .team-member p {
    color: #666;
    font-size: 0.95rem;
}

.page-about .cta-section {
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
}

.page-about .cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-about .cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .page-about .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .page-about .hero h1 {
        font-size: 2rem;
    }
    
    .page-about .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-about .story-text h2 {
        font-size: 2rem;
    }
    
    .page-about .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ========================================
   CAREERS PAGE STYLES
   ======================================== */

.page-careers .navbar {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-careers .logo {
    color: #333;
}

.page-careers .nav-menu a {
    color: #333;
}

.page-careers .nav-menu a:hover,
.page-careers .nav-menu a.active {
    color: #FDB714;
}

.page-careers .hero {
    margin-top: 80px;
    padding: 5rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, #F5B21A 0%, #ffca3a 100%);
}

.page-careers .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #000;
}

.page-careers .hero h1 span {
    color: #000;
    font-weight: 800;
}

.page-careers .hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #333;
}

/* Careers Why Section */
.careers-why-section {
    padding: 80px 2rem;
    background: #fff;
}

.careers-container {
    max-width: 1200px;
    margin: 0 auto;
}

.careers-why-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.careers-why-section h2 span {
    color: #F5B21A;
}

.careers-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(245, 178, 26, 0.2);
    border-color: #F5B21A;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Careers Openings Section */
.careers-openings-section {
    padding: 80px 2rem;
    background: #f8f9fa;
}

.careers-openings-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.careers-openings-section h2 span {
    color: #F5B21A;
}

.careers-main-text {
    text-align: center;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hiring-roles-inline {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2.5rem auto;
    max-width: 900px;
}

.role-tag {
    background: linear-gradient(135deg, #F5B21A 0%, #ffca3a 100%);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(245, 178, 26, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.role-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 178, 26, 0.4);
}

.careers-cta-text {
    text-align: center;
    font-size: 1.15rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.careers-form-inline {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.careers-form-inline form {
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F5B21A;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* File Upload Styling */
.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    left: -9999px;
}

.file-upload-label {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, #F5B21A 0%, #ffca3a 100%);
    color: #000;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: 600;
}

.file-upload-label:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 178, 26, 0.3);
}

.file-icon {
    font-size: 1.3rem;
}

.file-name {
    display: inline-block;
    margin-left: 1rem;
    color: #666;
    font-style: italic;
}

/* Submit Button */
.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #F5B21A 0%, #ffca3a 100%);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 1rem;
}

.submit-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 178, 26, 0.3);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success/Error Messages */
.success-message,
.error-message {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon,
.error-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-icon {
    color: #28a745;
}

.error-icon {
    color: #dc3545;
}

.success-message h3 {
    font-size: 2rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.error-message h3 {
    font-size: 2rem;
    color: #dc3545;
    margin-bottom: 1rem;
}

.success-message p,
.error-message p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Styles for Careers Page */
@media (max-width: 968px) {
    /* Mobile Navigation */
    .hamburger {
        display: flex;
    }
    
    .desktop-cta {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: left 0.3s ease;
        padding-top: 80px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu a {
        display: block;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        color: #333;
    }
    
    .mobile-cta {
        display: block;
        padding: 1.5rem 2rem;
        border-top: 2px solid #FDB714;
    }
    
    .mobile-cta a {
        padding: 0.8rem 2rem;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    /* Hamburger color for light theme */
    .page-services .hamburger span,
    .page-about .hamburger span,
    .page-portfolio .hamburger span,
    .page-careers .hamburger span,
    .page-contact .hamburger span {
        background: #333;
    }
    
    /* Hamburger color for dark theme (welcome page) */
    .page-welcome .hamburger span {
        background: #fff;
    }
    
    /* Dark theme mobile menu for welcome page */
    .page-welcome .nav-menu {
        background-color: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
    }
    
    .page-welcome .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .page-welcome .nav-menu a {
        color: #fff;
    }
    
    .page-welcome .mobile-cta {
        border-top: 2px solid #FDB714;
    }
}

@media (max-width: 768px) {
    .page-careers .hero h1 {
        font-size: 2rem;
    }
    
    .page-careers .hero p {
        font-size: 1rem;
    }
    
    .careers-why-section h2,
    .careers-openings-section h2 {
        font-size: 2rem;
    }
    
    .careers-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hiring-roles-inline {
        gap: 0.8rem;
    }
    
    .role-tag {
        font-size: 0.95rem;
        padding: 0.8rem 1.5rem;
    }
    
    .careers-main-text {
        font-size: 1.1rem;
    }
    
    .careers-cta-text {
        font-size: 1rem;
    }
    
    .careers-form-inline {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .file-upload-label {
        width: 100%;
        justify-content: center;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 2px 2px 20px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}
