/* Additional Styles for Deriv Broker Website */

/* Consistent Section Sizing and Layout */
.hero,
.about,
.why-deriv-promo,
.services,
.payment-methods,
.platforms,
.instruments,
.trading,
.contact {
    min-height: 100vh;
    padding: 6rem 0;
    display: flex;
    align-items: center;
    width: 100%;
}

/* Container adjustments for better responsiveness */
.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section - Full width and consistent */
.hero {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

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

/* Hero Content Styling for Background Image */
.hero-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-content .hero-title,
.hero-content .hero-subtitle,
.hero-content .hero-description {
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.hero-content .hero-promo {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

/* About Section - Full width layout */
.about-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* Video Sections */
.video-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0;
    padding: 2rem;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    width: 100%;
}

.video-section.secondary {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.video-section.secondary .video-content {
    direction: ltr;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-placeholder {
    width: 100%;
    max-width: 400px;
    height: 250px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 2px solid #ff444f;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-placeholder:hover {
    transform: scale(1.05);
    border-color: #ff6b73;
}

.video-placeholder i {
    font-size: 4rem;
    color: #ff444f;
    margin-bottom: 1rem;
}

.video-placeholder h3 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.video-placeholder p {
    color: #000000;
    font-size: 1rem;
}

.video-content h3 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.video-content p {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.video-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Mini Video Sections */
.mini-video {
    margin: 2rem 0;
    padding: 1rem;
}

.mini-video .video-placeholder {
    height: 150px;
    max-width: 250px;
}

.mini-video .video-placeholder i {
    font-size: 2.5rem;
}

.mini-video .video-placeholder h3 {
    font-size: 1.2rem;
}

.mini-video .video-placeholder p {
    font-size: 0.9rem;
}

/* Animated Payment Icons */
.animated-payment-icons {
    margin: 3rem 0;
    overflow: hidden;
    width: 100%;
}

.payment-icon-container {
    display: flex;
    gap: 2rem;
    animation: paymentSlide 20s linear infinite;
    width: max-content;
}

.payment-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #ffffff;
    border: 2px solid #ff444f;
    border-radius: 12px;
    min-width: 120px;
    transition: all 0.3s ease;
}

.payment-icon-item:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: #ff6b73;
}

.payment-icon-item i {
    font-size: 2rem;
    color: #ff444f;
}

.payment-icon-item span {
    font-size: 0.9rem;
    color: #000000;
    font-weight: 500;
    text-align: center;
}

@keyframes paymentSlide {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* CTA Sections */
.services-cta,
.payment-cta,
.platforms-cta,
.trading-cta,
.contact-cta,
.footer-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
    width: 100%;
}

.about-cta,
.why-deriv-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    width: 100%;
    justify-content: center;
}

/* Service Card CTAs */
.service-cta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
}

.service-cta .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Platform Actions */
.platform-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.platform-actions .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Forex Chart Background */
.forex-chart-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.3;
}

/* Responsive Design - Enhanced */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 1.5rem;
    }
    
    .hero-container {
        max-width: 100%;
        padding: 0 1.5rem;
    }
    
    .about-text {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .hero,
    .about,
    .why-deriv-promo,
    .services,
    .payment-methods,
    .platforms,
    .instruments,
    .trading,
    .contact {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-section.secondary {
        direction: ltr;
    }
    
    .payment-icon-container {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero,
    .about,
    .why-deriv-promo,
    .services,
    .payment-methods,
    .platforms,
    .instruments,
    .trading,
    .contact {
        padding: 3rem 0;
    }
    
    .services-cta,
    .payment-cta,
    .platforms-cta,
    .trading-cta,
    .contact-cta,
    .footer-cta,
    .about-cta,
    .why-deriv-cta {
        justify-content: center;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .video-section {
        padding: 1rem;
        margin: 2rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-container {
        padding: 0 0.5rem;
    }
    
    .hero,
    .about,
    .why-deriv-promo,
    .services,
    .payment-methods,
    .platforms,
    .instruments,
    .trading,
    .contact {
        padding: 2rem 0;
    }
    
    .video-section {
        padding: 0.5rem;
        margin: 1rem 0;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* Additional Button Styles */
.btn {
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #ff444f;
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #ff6b73;
}

.btn-secondary {
    background: transparent;
    color: #ff444f;
    border: 2px solid #ff444f;
}

.btn-secondary:hover {
    background: #ff444f;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Ensure all icons are red */
.fas,
.fab {
    color: #ff444f;
}

/* Remove all shadows */
* {
    box-shadow: none !important;
}

/* Ensure white background everywhere */
body,
.hero,
.about,
.services,
.payment-methods,
.platforms,
.trading,
.contact {
    background: #ffffff !important;
}

/* Ensure black text everywhere */
h1, h2, h3, h4, h5, h6,
p, span, li, a {
    color: #000000 !important;
}

/* Override for red elements */
.deriv-red,
.btn-primary,
.btn-secondary:hover,
.fas,
.fab {
    color: #ff444f !important;
}

/* Override for white text on buttons */
.btn-primary,
.btn-secondary:hover {
    color: #ffffff !important;
}

/* Grid improvements for better responsiveness */
.services-grid,
.platforms-grid,
.payment-grid {
    display: grid;
    gap: 2rem;
    width: 100%;
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .platforms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .payment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .services-grid,
    .platforms-grid,
    .payment-grid {
        grid-template-columns: 1fr;
    }
} 

/* Instruments Section */
.instruments {
    padding: 6rem 0;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
}

.instruments-video {
    background: #f8f9fa;
}

.instrument-category {
    margin: 4rem 0;
}

.category-title {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-title i {
    color: #ff444f;
    font-size: 2rem;
}

.instruments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.instrument-card {
    background: #ffffff;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: center;
}

.instrument-card:hover {
    transform: translateY(-5px);
    border-color: #ff444f;
}

.instrument-card.featured {
    border: 2px solid #ff444f;
    background: #fff5f5;
}

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

.instrument-icon {
    width: 50px;
    height: 50px;
    background: #ff444f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instrument-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.instrument-badge {
    background: #ff444f;
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.instrument-card h4 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.instrument-card p {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.instrument-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.instrument-details span {
    font-size: 0.9rem;
    color: #000000;
    font-weight: 500;
}

.spread {
    color: #ff444f !important;
}

.leverage {
    color: #000000 !important;
}

.instrument-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.instrument-actions .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.instruments-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
}

/* Responsive Design for Instruments */
@media (max-width: 1200px) {
    .instruments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .instruments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .instruments-grid {
        grid-template-columns: 1fr;
    }
    
    .category-title {
        font-size: 1.8rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .instrument-details {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .instrument-actions {
        flex-direction: column;
    }
    
    .instrument-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .instrument-card {
        padding: 1.5rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .instrument-card h4 {
        font-size: 1.3rem;
    }
} 

/* Enhanced Navigation and Page Transitions */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff444f;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #ff444f !important;
    font-weight: 600;
}

/* Page Transition Effects */
body {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scrolling for internal links */
html {
    scroll-behavior: smooth;
}

/* Enhanced button hover effects */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

/* Logo hover effect */
.nav-logo h2 {
    transition: all 0.3s ease;
}

.nav-logo h2:hover {
    transform: scale(1.05);
}

/* Mobile navigation improvements */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 280px;
        height: 100vh;
        text-align: left;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 6rem 0 2rem 0;
        backdrop-filter: blur(10px);
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
        transform: translateX(0);
    }

    .nav-item {
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 1.2rem 2rem;
        display: block;
        color: #000000;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .nav-link:hover {
        background-color: rgba(255, 68, 79, 0.1);
        color: #ff444f;
        padding-left: 2.5rem;
    }
    
    .nav-link.active {
        background-color: rgba(255, 68, 79, 0.15);
        color: #ff444f;
        border-left: 4px solid #ff444f;
    }
    
    /* Overlay when menu is open */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Enhanced hamburger menu animation */
    .nav-toggle .bar {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Smooth entrance animation for menu items */
    .nav-item {
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateX(0);
    }
    
    /* Staggered animation for menu items */
    .nav-menu.active .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(6) { transition-delay: 0.35s; }
    .nav-menu.active .nav-item:nth-child(7) { transition-delay: 0.4s; }
    .nav-menu.active .nav-item:nth-child(8) { transition-delay: 0.45s; }
    .nav-menu.active .nav-item:nth-child(9) { transition-delay: 0.5s; }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 100%;
        left: -100%;
    }
    
    .nav-menu.active {
        left: 0;
    }
}

/* Enhanced footer links */
.footer-section ul li a {
    transition: all 0.3s ease;
    position: relative;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ff444f;
    transition: width 0.3s ease;
}

.footer-section ul li a:hover::before {
    width: 100%;
}

/* Social media icons enhancement */
.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
}

/* Breadcrumb navigation */
.breadcrumb {
    padding: 1rem 0;
    margin-bottom: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.breadcrumb ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0 1rem;
}

.breadcrumb li {
    color: #6b7280;
}

.breadcrumb li:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: #d1d5db;
}

.breadcrumb a {
    color: #ff444f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ff6b73;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #ff444f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #ff6b73;
    transform: translateY(-3px);
}

/* Enhanced form styling */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ff444f;
    box-shadow: 0 0 0 3px rgba(255, 68, 79, 0.1);
}

/* Loading states for buttons */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 

/* Responsive Hero Background */
@media (max-width: 768px) {
    .hero-background {
        opacity: 0.8;
    }
    
    .hero-bg-image {
        opacity: 0.1;
    }
    
    .hero-content {
        padding: 1.5rem;
        margin: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-bg-image {
        opacity: 0.08;
    }
    
    .hero-content {
        padding: 1rem;
        margin: 0.5rem;
    }
} 

/* Free Robots Page Styling */
.robots-showcase {
    margin: 4rem 0;
}

.robots-showcase h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 3rem;
}

.robots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.robot-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.robot-card:hover::before {
    transform: scaleX(1);
}

.robot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #ff444f;
}

.robot-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff444f, #ff6b73);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.robot-card:hover .robot-icon {
    transform: scale(1.1) rotate(5deg);
}

.robot-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.robot-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.robot-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.robot-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(255, 68, 79, 0.1);
    color: #ff444f;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 68, 79, 0.2);
}

.robot-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.robot-actions .btn {
    min-width: 120px;
    font-size: 0.9rem;
    padding: 0.8rem 1.2rem;
}

/* Robots CTA Section */
.robots-cta {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 20px;
    border: 2px solid #ff444f;
}

.robots-cta .btn {
    margin: 0.5rem;
    min-width: 150px;
}

/* Responsive Design for Robots */
@media (max-width: 768px) {
    .robots-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .robot-card {
        padding: 1.5rem;
    }
    
    .robots-cta {
        padding: 2rem 1rem;
    }
    
    .robots-cta .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
} 