/* Robet Game Studio - Custom CSS */

/* Hero Banner Section */
.hero-banner {
    min-height: 100vh;
    background: linear-gradient(135deg, #1e1b4b 0%, #3730a3 25%, #7c3aed 50%, #ec4899 75%, #1f2937 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Floating Elements Container */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* 3D Blob Shapes */
.blob {
    position: absolute;
    opacity: 0.7;
    filter: blur(0.5px) drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
}

.blob svg {
    width: 100%;
    height: 100%;
}

.blob-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: -50px;
    animation: float1 8s ease-in-out infinite;
}

.blob-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: -30px;
    animation: float2 10s ease-in-out infinite;
}

.blob-3 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 15%;
    animation: float3 12s ease-in-out infinite;
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(-180deg);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-40px) rotate(360deg);
    }
}

/* Floating Messaging Icons */
.floating-icon {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: iconFloat 6s ease-in-out infinite;
}

.icon-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
    color: #ff5c00;
    /* Console controller - orange */
}

.icon-2 {
    top: 25%;
    right: 20%;
    animation-delay: 1s;
    color: #00D4AA;
    /* Mobile gaming - teal */
}

.icon-3 {
    top: 50%;
    left: 10%;
    animation-delay: 2s;
    color: #0084ff;
    /* PC gaming - blue */
}

.icon-4 {
    top: 70%;
    right: 15%;
    animation-delay: 3s;
    color: #FFD700;
    /* Trophy - gold */
}

.icon-5 {
    top: 40%;
    right: 30%;
    animation-delay: 4s;
    color: #8B5CF6;
    /* VR headset - purple */
}

.icon-6 {
    top: 80%;
    left: 25%;
    animation-delay: 5s;
    color: #EC4899;
    /* Joystick - pink */
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.1);
    }
}

/* Hero Content */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Buttons */
.hero-buttons {
    position: relative;
    z-index: 2;
}

.btn-explore {
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
    border: none;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
    min-width: 180px;
}

.btn-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(236, 72, 153, 0.6);
    background: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
    color: white;
}

.btn-join {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 180px;
}

.btn-join:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
    border-color: white;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Mobile Responsive Adjustments for Hero */
@media (max-width: 991.98px) {
    .hero-banner {
        min-height: 90vh;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .blob-1,
    .blob-2,
    .blob-3 {
        width: 100px;
        height: 100px;
    }

    .btn-explore,
    .btn-join {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        min-width: 160px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .blob-1,
    .blob-2,
    .blob-3 {
        width: 80px;
        height: 80px;
    }

    .hero-buttons {
        padding: 0 1rem;
    }

    .btn-explore,
    .btn-join {
        width: 100%;
        max-width: 280px;
    }
}


/* Game Development Services Section */
.services-section {
    background: #000;
    background: radial-gradient(ellipse at bottom, rgba(88, 28, 135, 12) 0%, #000 50%);
    padding: 80px 0;
    position: relative;
}

/* Section Headers */
.services-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8B5CF6 0%, #ff5c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
}

.services-subtitle i {
    color: #ff5c00;
    -webkit-text-fill-color: #ff5c00;
    font-size: 1.2rem;
}

/* Service Cards */
.service-card {
    background: #141414;
    border: 2px solid #8B5CF6;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
    border-color: #EC4899;
}

/* Service Icons */
.service-icon {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-icon svg {
    color: #8B5CF6;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon svg {
    color: #EC4899;
    transform: scale(1.1);
}

/* Service Titles */
.service-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Mobile Responsive Adjustments for Services */
@media (max-width: 991.98px) {
    .services-section {
        padding: 60px 0;
    }

    .services-main-title {
        font-size: 2.5rem;
    }

    .services-subtitle {
        font-size: 1.3rem;
    }

    .service-card {
        height: 200px;
        padding: 1.5rem 1rem;
    }

    .service-title {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .services-main-title {
        font-size: 2rem;
    }

    .services-subtitle {
        font-size: 1.1rem;
    }

    .service-card {
        height: 180px;
        padding: 1.25rem 0.75rem;
    }

    .service-icon svg {
        width: 40px;
        height: 40px;
    }

    .service-title {
        font-size: 0.8rem;
    }
}

/* Hire Game Developers Section */
.hire-dev-section {
    background: #000;
    padding: 80px 0;
}

/* Section Header */
.hire-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #8B5CF6 0%, #ff5c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.arrow-icon {
    color: #ff5c00;
    flex-shrink: 0;
}

/* Image Container */
.hire-image-container {
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    position: relative;
}

.hire-image {
    object-fit: cover;
    object-position: center;
    height: 100% !important;
}

/* Content Box */
.hire-content-box {
    background: #6028b8;
    min-height: 500px;
    color: white;
}

.hire-content-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    color: white;
}

.hire-content-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Learn More Button */
.hire-learn-more-btn {
    background: transparent;
    border: 2px solid #ff5c00;
    color: #ff5c00;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.875rem 2rem;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hire-learn-more-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff5c00;
    transition: width 0.3s ease;
}

.hire-learn-more-btn:hover {
    background: #ff5c00;
    color: white;
    border-color: #ff5c00;
}

.hire-learn-more-btn:hover::before {
    width: 100%;
}

.hire-learn-more-btn svg {
    transition: transform 0.3s ease;
}

.hire-learn-more-btn:hover svg {
    transform: translateX(5px);
}

/* Mobile Responsive Adjustments */
@media (max-width: 991.98px) {
    .hire-dev-section {
        padding: 60px 0;
    }

    .hire-main-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .hire-image-container {
        min-height: 300px;
        margin-bottom: 0;
    }

    .hire-content-box {
        min-height: auto;
        padding: 3rem !important;
    }

    .hire-content-title {
        font-size: 1.35rem;
    }

    .hire-content-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .hire-main-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.25rem;
    }

    .hire-image-container {
        min-height: 250px;
    }

    .hire-content-box {
        padding: 2rem !important;
    }

    .hire-content-title {
        font-size: 1.25rem;
    }

    .hire-content-text {
        font-size: 0.9rem;
    }

    .hire-learn-more-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
}

/* Our Talent Pool Section */
.talent-pool-section {
    background: #000;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* Background Effects */
.talent-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-glow-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.bg-glow-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 300px;
    background: radial-gradient(ellipse at bottom right, rgba(236, 72, 153, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

/* Section Title */
.talent-pool-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.pool-gradient-text {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.talent-arrow-icon {
    color: #ff5c00;
    flex-shrink: 0;
}

/* Team Boxes */
.team-box {
    background: linear-gradient(145deg, #0f0f0f 0%, #1a1a1a 100%);
    border: 1px solid transparent;
    background-image:
        linear-gradient(145deg, #0f0f0f 0%, #1a1a1a 100%),
        linear-gradient(135deg, #EC4899 0%, #8B5CF6 50%, #3B82F6 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    height: 280px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.team-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.team-box:hover::before {
    opacity: 1;
}

.team-box:hover {
    box-shadow:
        0 10px 25px rgba(139, 92, 246, 0.15),
        0 0 15px rgba(236, 72, 153, 0.1);
    transform: translateY(-5px);
}

.team-box-inner {
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 20px;
}

.team-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.team-label {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    position: relative;
}

.team-label::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #8B5CF6 0%, #EC4899 100%);
    border-radius: 1px;
}

.team-underline {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #8B5CF6 0%, #EC4899 100%);
    margin-bottom: 2rem;
    border-radius: 1px;
}

.team-content {
    color: white;
}

.team-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

.purple-text {
    color: #8B5CF6;
    font-weight: 700;
}

.orange-highlight {
    color: #FF6B35;
    font-weight: 800;
}

/* Description & CTA */
.talent-description {
    position: relative;
    z-index: 2;
}

.talent-desc-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.talent-cta {
    position: relative;
    z-index: 2;
}

.cta-heading {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.talent-contact-btn {
    background: #ff5c00;
    border: none;
    color: white;
    font-weight: 800;
    font-size: 1rem;
    padding: 1rem 3rem;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.talent-contact-btn:hover {
    background: #e54f00;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 92, 0, 0.4);
}

.btn-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: white;
    transition: width 0.3s ease;
}

.talent-contact-btn:hover .btn-underline {
    width: 100%;
}

/* Decorative Arrows */
.floating-arrows {
    position: absolute;
    bottom: 5%;
    right: 5%;
    z-index: 2;
}

.arrow-decoration {
    position: absolute;
    color: #8B5CF6;
    opacity: 0.3;
    animation: floatArrow 4s ease-in-out infinite;
}

.arrow-1 {
    bottom: 0;
    right: 100px;
    animation-delay: 0s;
}

.arrow-2 {
    bottom: 60px;
    right: 40px;
    animation-delay: 1s;
}

.arrow-3 {
    bottom: 120px;
    right: 0;
    animation-delay: 2s;
}

@keyframes floatArrow {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
        opacity: 0.6;
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 991.98px) {
    .talent-pool-section {
        padding: 80px 0;
    }

    .talent-pool-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .team-box {
        height: 260px;
        padding: 2.5rem 2rem;
        margin-bottom: 2rem;
        clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
    }

    .team-box::before {
        clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
    }

    .team-title {
        font-size: 1.75rem;
        letter-spacing: 1.5px;
    }

    .team-description {
        font-size: 1rem;
    }

    .talent-desc-text {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .cta-heading {
        font-size: 1.5rem;
        text-align: center;
    }

    .floating-arrows {
        display: none;
    }
}

@media (max-width: 576px) {
    .talent-pool-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .team-box {
        height: 240px;
        padding: 2rem 1.5rem;
        clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
    }

    .team-box::before {
        clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
    }

    .team-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

    .team-description {
        font-size: 0.95rem;
    }

    .team-underline {
        width: 50px;
        margin-bottom: 1.5rem;
    }

    .talent-desc-text {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .cta-heading {
        font-size: 1.25rem;
    }

    .talent-contact-btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
    }
}

/* Why Robet Section */
.why-Robet-section {
    background: #000;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Background Effects */
.why-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.character-radial-glow {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.08) 40%, transparent 70%);
    border-radius: 50%;
}

/* Section Title */
.why-Robet-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.Robet-gradient-text {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-arrow-icon {
    color: #ff5c00;
    flex-shrink: 0;
}

/* Character Container */
.character-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    z-index: 2;
}

.character-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.2) 0%, rgba(236, 72, 153, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.character-image {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(139, 92, 246, 0.3));
}

/* Feature Cards Grid */
.feature-cards-grid {
    position: relative;
    z-index: 2;
}

.feature-card {
    background: #0f0f0f;
    border: 1px solid #EC4899;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    padding: 2rem 1.5rem;
    height: 220px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    border-color: #8B5CF6;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
    transform: translateY(-3px);
}

/* Feature Icons */
.feature-icon {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    height: 48px;
}

.feature-icon svg {
    color: #8B5CF6;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    color: #EC4899;
    transform: scale(1.05);
}

/* Feature Content */
.feature-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ff5c00;
    text-transform: capitalize;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    flex-grow: 1;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991.98px) {
    .why-Robet-section {
        padding: 80px 0;
    }

    .why-Robet-title {
        font-size: 2.5rem;
        text-align: center;
        justify-content: center;
        margin-bottom: 3rem;
    }

    .character-container {
        min-height: 350px;
        margin-bottom: 3rem;
    }

    .character-radial-glow {
        left: 50%;
        width: 400px;
        height: 400px;
    }

    .character-glow {
        width: 300px;
        height: 300px;
    }

    .feature-card {
        height: 200px;
        padding: 1.5rem 1.25rem;
        margin-bottom: 1rem;
        clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    }

    .feature-card::before {
        clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .why-Robet-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .character-container {
        min-height: 280px;
    }

    .character-glow {
        width: 250px;
        height: 250px;
    }

    .feature-card {
        height: 180px;
        padding: 1.25rem 1rem;
        clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    }

    .feature-card::before {
        clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    }

    .feature-icon {
        height: 40px;
        margin-bottom: 0.75rem;
    }

    .feature-icon svg {
        width: 40px;
        height: 40px;
    }

    .feature-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .feature-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* About Robet Section */
.about-section {
    background: #000;
    position: relative;
    overflow: hidden;
}

/* Section Title */
.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.about-gradient-text {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-arrow-icon {
    color: #ff5c00;
    flex-shrink: 0;
}

/* Text Content Container */
.about-text-container {
    height: 100%;
    display: flex;
    align-items: center;
}

.about-content-box {
    background: #0f0f0f;
    border: 1px solid #8B5CF6;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    padding: 3rem 2.5rem;
    width: 100%;
    position: relative;
}

.about-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.about-description:last-of-type {
    margin-bottom: 2rem;
}

.orange-text {
    color: #ff5c00;
    font-weight: 600;
}

.about-learn-more {
    margin-top: auto;
}

.learn-more-link {
    color: #ff5c00;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.learn-more-link:hover {
    color: #ff7a33;
    transform: translateX(5px);
}

.learn-more-link svg {
    transition: transform 0.3s ease;
}

.learn-more-link:hover svg {
    transform: translateX(3px);
}

/* Image Container */
.about-image-container {
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, #ff5c00 0%, #ff8a33 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-robot-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Stats Section */
.stats-section {
    margin-top: 4rem;
}

/* Top Stats Cards (Orange Border) */
.stat-card-top {
    background: #000;
    border: 2px solid #ff5c00;
    clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
    padding: 1.5rem 2rem;
    text-align: center;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.stat-card-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 92, 0, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #8B5CF6;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Bottom Description Cards (Purple Background) */
.stat-card-bottom {
    background: #6a1b9a;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    padding: 1.5rem;
    height: 120px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.stat-card-bottom:hover {
    background: #7c2bad;
    transform: translateY(-2px);
}

.stat-description {
    font-size: 0.85rem;
    line-height: 1.5;
    color: white;
    margin: 0;
    text-align: center;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991.98px) {
    .about-section {
        padding: 4rem 0;
    }

    .about-title {
        font-size: 2.5rem;
        text-align: center;
        justify-content: center;
        margin-bottom: 3rem;
    }

    .about-image-container {
        min-height: 300px;
        margin-bottom: 3rem;
    }

    .about-content-box {
        clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
        padding: 2.5rem 2rem;
    }

    .about-description {
        font-size: 0.95rem;
        text-align: center;
    }

    .about-learn-more {
        text-align: center;
    }

    .stats-section {
        margin-top: 3rem;
    }

    .stat-card-top {
        height: 90px;
        padding: 1.25rem 1.5rem;
        margin-bottom: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .stat-card-bottom {
        height: 110px;
        padding: 1.25rem;
        clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    }

    .stat-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .about-image-container {
        min-height: 250px;
    }

    .about-content-box {
        clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
        padding: 2rem 1.5rem;
    }

    .about-description {
        font-size: 0.9rem;
    }

    .stat-card-top {
        height: 80px;
        padding: 1rem 1.25rem;
        clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .stat-card-bottom {
        height: 100px;
        padding: 1rem;
        clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    }

    .stat-description {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

/* Games We Worked On Section */
.games-section {
    background: #000;
    position: relative;
}

/* Section Title */
.games-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.games-gradient-text {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.games-arrow-icon {
    color: #ff5c00;
    flex-shrink: 0;
}

/* Portfolio Grid */
.portfolio-item {
    position: relative;
    overflow: hidden;
    height: 300px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

/* Portfolio CTA Item */
.portfolio-cta-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-cta-content {
    text-align: center;
}

/* Portfolio Button */
.portfolio-btn {
    background: transparent;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.portfolio-btn:hover {
    background: white;
    color: #000;
    border-color: white;
    transform: translateY(-2px);
}

.portfolio-btn svg {
    transition: transform 0.3s ease;
}

.portfolio-btn:hover svg {
    transform: translateX(5px);
}

/* Mobile Responsive Adjustments */
@media (max-width: 991.98px) {
    .games-section {
        padding: 4rem 0;
    }

    .games-title {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 3rem;
    }

    .portfolio-item {
        height: 160px;
        border-radius: 6px;
    }

    .portfolio-btn {
        font-size: 0.85rem;
        padding: 0.65rem 1.25rem;
    }
}

@media (max-width: 576px) {
    .games-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .portfolio-item {
        height: 140px;
        border-radius: 4px;
    }

    .portfolio-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.8rem;
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 768px) {
    .d-lg-none .portfolio-btn {
        margin-top: 1rem;
    }
}

/* Navigation Bar Styles */
.Robet-navbar {
    background-color: #0f0f0f !important;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Brand Styles */
.navbar-brand {
    text-decoration: none;
    color: white !important;
}

.brand-container {
    display: flex;
    align-items: center;
}

.brand-icon {
    color: #ff5c00;
    display: flex;
    align-items: center;
}

.brand-text {
    line-height: 1.2;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: white;
    margin: 0;
}

.brand-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #cccccc;
    margin: 0;
    text-transform: uppercase;
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem !important;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #ff5c00 !important;
}

.navbar-nav .nav-link:focus {
    color: #ff5c00 !important;
}

/* Dropdown Styles */
.dropdown-menu {
    background-color: #1a1a1a !important;
    border: 1px solid #333 !important;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    margin-top: 0.5rem;
}

.dropdown-item {
    color: white !important;
    padding: 0.75rem 1.5rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #ff5c00 !important;
    color: white !important;
}

.dropdown-item:focus {
    background-color: #ff5c00 !important;
    color: white !important;
}

/* Get in Touch Button */
.btn-get-in-touch {
    background-color: transparent;
    border: 2px solid #ff5c00;
    color: #ff5c00;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    min-width: 160px;
}

.btn-get-in-touch:hover {
    background-color: #ff5c00;
    color: white;
    border-color: #ff5c00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 92, 0, 0.3);
}

.btn-get-in-touch:focus {
    background-color: #ff5c00;
    color: white;
    border-color: #ff5c00;
    box-shadow: 0 0 0 0.25rem rgba(255, 92, 0, 0.25);
}

/* Mobile Styles */
@media (max-width: 991.98px) {
    .Robet-navbar {
        padding: 0.75rem 0;
    }

    .navbar-collapse {
        margin-top: 1rem;
        background-color: #0f0f0f;
        border-radius: 8px;
        padding: 1rem;
        margin-left: -1rem;
        margin-right: -1rem;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid #333;
    }

    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .btn-get-in-touch {
        margin-top: 1rem;
        width: 100%;
    }

    .dropdown-menu {
        background-color: #0f0f0f !important;
        border: none !important;
        box-shadow: none;
        padding-left: 1rem;
    }

    .dropdown-item {
        padding: 0.5rem 0;
        font-size: 0.9rem;
        color: #cccccc !important;
    }

    .dropdown-item:hover {
        background-color: transparent !important;
        color: #ff5c00 !important;
    }
}

/* Mobile Toggler */
.navbar-toggler {
    padding: 0.25rem 0.5rem;
    border: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Demo Content Section (if needed) */
.demo-hero-section {
    height: 90vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

/* Responsive Adjustments */
@media (min-width: 992px) {
    .container-fluid {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (max-width: 576px) {
    .brand-name {
        font-size: 1.25rem;
    }

    .brand-subtitle {
        font-size: 0.7rem;
    }

    .navbar-nav .nav-link {
        font-size: 0.9rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #ff5c00;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e54f00;
}

/* =============================================
   THEY TRUST US SECTION
   ============================================= */
.trusted-section {
    color: #fff;
}

.bg-darkpurple {
    background-color: #1c0a32;
}

.gradient-text {
    background: linear-gradient(90deg, #a259ff, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-orange {
    color: #ff6b00;
    font-weight: bold;
}

/* Clutch Badge Styling */
.clutch-badge-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.clutch-badge-image {
    max-height: 60px;
    width: auto;
    border-radius: 50px;

}

/* Logo Grid Styling */
.logo-card {
    min-height: 100px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.logo-card:hover {
    transform: translateY(-2px);
    background-color: rgba(139, 92, 246, 0.1) !important;
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.logo-image {
    max-height: 60px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    transition: filter 0.3s ease;
}

.logo-card:hover .logo-image {
    filter: brightness(1.3) contrast(1.2);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .logo-card {
        min-height: 80px;
    }

    .logo-image {
        max-height: 50px;
    }

    .clutch-badge-image {
        max-height: 32px;
    }
}

@media (max-width: 576px) {
    .logo-card {
        min-height: 70px;
    }

    .logo-image {
        max-height: 40px;
    }

    .clutch-badge-container {
        margin-top: 1rem;
    }
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
    background: #121212;
    color: #fff;
    position: relative;
}

/* FAQ Section Title */
.faq-title {
    text-align: left;
    margin-bottom: 2rem;
}

.faq-gradient-text {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.faq-arrow {
    color: #ff6b00;
    font-weight: bold;
    margin-left: 0.5rem;
}

/* FAQ Accordion Styles */
.faq-accordion {
    border: none;
}

.faq-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

/* FAQ Button Styling */
.faq-button {
    background: transparent;
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.5rem 0;
    text-align: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    box-shadow: none;
    outline: none;
}

.faq-button:not(.collapsed) {
    color: #fff;
    background: transparent;
    box-shadow: none;
}

.faq-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-button::after {
    display: none; /* Hide default Bootstrap arrow */
}

/* FAQ Question Text */
.faq-question {
    flex: 1;
    text-align: left;
    padding-right: 1rem;
}

/* Custom FAQ Icon */
.faq-icon {
    width: 30px;
    height: 30px;
    background: #ff6b00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-plus {
    color: white;
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

/* Rotate plus to minus when expanded */
.faq-button:not(.collapsed) .faq-plus {
    transform: rotate(45deg);
}

.faq-button:not(.collapsed) .faq-icon {
    background: #e54f00;
}

/* FAQ Answer Styling */
.faq-answer {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    padding: 0 0 1.5rem 0;
    border: none;
}

/* Accordion Collapse Animation */
.accordion-collapse {
    border: none;
}

/* Hover Effects */
.faq-button:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.02);
}

.faq-button:hover .faq-icon {
    background: #ff7a33;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .faq-button {
        font-size: 1rem;
        padding: 1.25rem 0;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
    }
    
    .faq-plus {
        font-size: 16px;
    }
    
    .faq-answer {
        font-size: 0.95rem;
        padding: 0 0 1.25rem 0;
    }
}

@media (max-width: 576px) {
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-button {
        font-size: 0.95rem;
        padding: 1rem 0;
    }
    
    .faq-question {
        padding-right: 0.75rem;
    }
    
    .faq-icon {
        width: 26px;
        height: 26px;
    }
    
    .faq-plus {
        font-size: 14px;
    }
    
    .faq-answer {
        font-size: 0.9rem;
        line-height: 1.6;
        padding: 0 0 1rem 0;
    }
}

/* =============================================
   FOOTER SECTION
   ============================================= */
.footer-section {
    background: #1c0a32;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 80px 0 0 0;
}

/* Footer Background Effects */
.footer-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.footer-glow-top {
    position: absolute;
    top: 0;
    left: 25%;
    transform: translateX(-50%);
    width: 60%;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.08) 40%, transparent 70%);
    border-radius: 50%;
}

.footer-glow-bottom {
    position: absolute;
    bottom: 0;
    right: 20%;
    width: 50%;
    height: 250px;
    background: radial-gradient(ellipse at bottom right, rgba(255, 92, 0, 0.1) 0%, rgba(139, 92, 246, 0.05) 50%, transparent 70%);
    border-radius: 50%;
}

/* Footer Brand */
.footer-brand {
    position: relative;
    z-index: 2;
}

.footer-logo .brand-container {
    display: flex;
    align-items: center;
}

.footer-logo .brand-icon {
    color: #ff5c00;
    display: flex;
    align-items: center;
}

.footer-logo .brand-name {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: white;
    margin: 0;
}

.footer-logo .brand-subtitle {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #cccccc;
    margin: 0;
    text-transform: uppercase;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Social Media Links */
.social-links {
    position: relative;
    z-index: 2;
}

.social-title {
    font-size: 1rem;
    font-weight: 600;
    color: #8B5CF6;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: #8B5CF6;
    border-color: #8B5CF6;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

/* Footer Columns */
.footer-column {
    position: relative;
    z-index: 2;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff5c00;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #8B5CF6;
    padding-left: 5px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #8B5CF6;
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 8px;
}

/* Newsletter Section */
.newsletter-section {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 3rem 2rem;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.newsletter-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.newsletter-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #8B5CF6;
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(139, 92, 246, 0.25);
}

.newsletter-btn {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #DB2777 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.powered-by {
    color: #8B5CF6;
    font-weight: 500;
}

.legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #8B5CF6;
}

.separator {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0.5rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991.98px) {
    .footer-section {
        padding: 60px 0 0 0;
    }
    
    .newsletter-section {
        padding: 2.5rem 1.5rem;
    }
    
    .newsletter-title {
        font-size: 1.5rem;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-column {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .newsletter-input {
        border-radius: 8px;
        margin-bottom: 1rem;
    }
    
    .newsletter-btn {
        border-radius: 8px;
        width: 100%;
        justify-content: center;
    }
    
    .legal-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 40px 0 0 0;
    }
    
    .newsletter-section {
        padding: 2rem 1rem;
    }
    
    .newsletter-title {
        font-size: 1.25rem;
    }
    
    .newsletter-subtitle {
        font-size: 0.95rem;
    }
    
    .footer-description {
        font-size: 0.95rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .legal-links {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .separator {
        display: none;
    }
    
    .copyright-text {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
}