@font-face {
    font-family: 'ArabicFont';
    src: url('../arabic_font/Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'ArabicFont';
    src: url('../arabic_font/Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'ArabicFont';
    src: url('../arabic_font/Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'ArabicFont';
    src: url('../arabic_font/Demi-Bold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'ArabicFont';
    src: url('../arabic_font/Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    font-family: 'Bounded', sans-serif;
    line-height: 1.6;
    color: #ffb72d;
    padding-top: 0;
    margin: 0;
}

/* Language switching */
.lang-en, .lang-ar {
    transition: opacity 0.2s ease;
}

.lang-ar {
    font-family: 'ArabicFont', sans-serif;
    font-size: 1.15em;
}

body.lang-en .lang-ar {
    display: none;
}

body.lang-ar .lang-en {
    display: none;
}

/* RTL adjustments for Arabic */
body.lang-ar .hero-content {
    text-align: right;
}

body.lang-ar .about-content {
    text-align: right;
}

body.lang-ar .hero-tag {
    text-align: center;
}

body.lang-ar .hero-btn {
    text-align: center;
}

body.lang-ar .hero-img {
    transform: scaleX(-1);
}

body.lang-ar .hero-video {
    transform: scaleX(-1);
}

/* Flip arrows in buttons for RTL */
body.lang-ar .hero-btn svg,
body.lang-ar .nav-contact svg,
body.lang-ar .footer-btn svg,
body.lang-ar .contact-btn svg,
body.lang-ar .form-submit svg,
body.lang-ar button svg,
body.lang-ar a svg {
    transform: scaleX(-1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
    height: 70px;
}

@media (min-width: 768px) {
    .navbar {
        backdrop-filter: blur(10px);
    }
}

.navbar.scrolled {
    background: rgba(13, 20, 25, 0.95);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 70px;
}

.nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-utilities {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-btn {
    background: none;
    border: none;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-search {
    background: none;
    border: none;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    letter-spacing: 2px;
    z-index: 21;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
    justify-content: center;
    overflow: visible;
}

.nav-menu li {
    margin: 0 1rem;
    position: static;
}

.nav-menu li.nav-dropdown {
    position: relative;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    padding: 15px 10px;
    display: block;
}

.nav-menu a:hover {
    color: #00c036;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255,255,255,0.1);
    color: #00c036;
}

.nav-lang {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 15px;
    transition: all 0.3s ease;
    min-width: 40px;
}

.nav-lang:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

.nav-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 25px;
    color: #000;
    border: none;
    background: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    background-image: url('../image/Shape.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-width: 140px;
    min-height: 50px;
}

.nav-contact:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    max-width: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4);
    z-index: 0;
    max-width: 100%;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    max-width: 100%;
    transition: opacity 0.5s ease;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

.hero-tag {
    background: #0d1419;
    border-radius: 3px;
    font-size: 1.2rem;
    padding: 1rem 1.5rem;
    display: inline-block;
    color: white;
    font-weight: 500;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 120%;
    max-width: 98%;
    margin: 1.5rem 0;
    color: white;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    margin: 0 0 1.5rem 0;
    max-width: 75%;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px 35px;
    color: #000;
    border: none;
    background: none;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    background-image: url('../image/Shape.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-width: 250px;
    min-height: 60px;
    cursor: pointer;
}

.hero-btn:hover {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .hero {
        height: 100vh;
    }
    .hero-title {
        max-width: 65%;
        font-size: 3.2rem;
    }
    .hero-description {
        font-size: 1.3rem;
        max-width: 63%;
    }
    .topic-item {
        font-size: 1rem;
    }
    .topic-content p {
        font-size: 1rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 3.8rem;
    }
}

@media (min-width: 1440px) {
    .hero-title {
        font-size: 4.2rem;
    }
}

@media (min-width: 1920px) {
    .hero-title { font-size: 5rem; }
    .hero-description { font-size: 1.5rem; max-width: 55%; }
    .container, .nav-container, .services-grid, .benefits-container, .advantages-grid, .contact-container, .footer-container { max-width: 1600px; }
}

@media (min-width: 2560px) {
    .hero-title { font-size: 6rem; }
    .hero-description { font-size: 1.75rem; }
    .container, .nav-container, .services-grid, .benefits-container, .advantages-grid, .contact-container, .footer-container { max-width: 2000px; }
}

@media (min-width: 3440px) {
    .hero-title { font-size: 7rem; }
    .container, .nav-container, .services-grid, .benefits-container, .advantages-grid, .contact-container, .footer-container { max-width: 2400px; }
}

@media (min-width: 5120px) {
    .hero-title { font-size: 8rem; }
    .container, .nav-container, .services-grid, .benefits-container, .advantages-grid, .contact-container, .footer-container { max-width: 3200px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-description { font-size: 0.95rem; max-width: 90%; }
    .nav-menu { display: none; }
    .benefits-title { font-size: 2rem; }
    .services-title { font-size: 1.75rem; }
    .advantages-title { font-size: 2rem; }
    .contact-title { font-size: 2rem; }
    .footer-heading { font-size: 1.75rem; }
    .nav-contact { min-width: 90px; min-height: 36px; padding: 6px 16px; font-size: 0.75rem; }
}

@media (max-width: 768px) {
    * {
        max-width: 100vw;
    }
}

@media (max-width: 375px) {
    .hero-title { font-size: 1.75rem; }
    .hero-description { font-size: 0.875rem; }
}

@media (orientation: portrait) and (min-width: 768px) {
    .hero { height: 70vh; }
    .advantages-visual { height: 500px; }
}

.hero-bottom {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px 35px;
    color: #000;
    border: none;
    background: none;
    transition: all 0.4s ease;
    position: relative;
    background-image: url('../image/Shape.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-width: 250px;
    min-height: 60px;
    cursor: pointer;
}

.contact-btn:hover {
    transform: scale(1.05);
}

.hero-topics {
    position: absolute;
    width: 100%;
    max-width: 100%;
    bottom: 0;
    z-index: 4;
    color: white;
    display: none;
    overflow: hidden;
}

.hero-topics-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.topics-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

.topic-item {
    flex-basis: 20%;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.7rem;
    line-height: 20px;
    padding: 2rem 3rem;
    transition: 0.1s;
    backdrop-filter: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    border-right: 1px solid rgba(255,255,255,0.35);
}

.topic-item:last-child {
    border-right: none;
}

.topic-item:hover {
    backdrop-filter: blur(5px);
    background: rgba(255,255,255,0.05);
}

.topic-item:hover .topic-content {
    transform: translateY(-5px);
}

.topic-content {
    cursor: pointer;
    position: relative;
}

.topic-content::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.35);
}

.topic-content {
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
}

.topic-content p {
    transform: none;
    transition: 0.2s;
    position: relative;
    margin: 0;
    font-size: 17px;
}

@media (min-width: 768px) {
    .topic-content {
        max-width: 23rem;
    }
}

@media (min-width: 768px) {
    .hero-topics {
        display: block;
    }
    .topic-item {
        font-size: 1rem;
    }
    .topic-content p {
        font-size: 0.9rem;
    }
}



/* About Section */
.about {
    position: relative;
    padding: 100px 0;

    overflow: hidden;
    width: 100%;
    max-width: 100%;
    background-image: url('../image/pic1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.image-container {
    position: relative;
}

.image-overlay {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, #ffb72d 0%, #FFFFFF 100%);
    border-radius: 24px;
    z-index: 1;
    opacity: 0.1;
}

.about-hero-image {
    position: relative;
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 2;
    transition: transform 0.6s ease;
}

.about-hero-image:hover {
    transform: scale(1.02);
}

.floating-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: white;
    padding: 16px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.badge-icon {
    width: 24px;
    height: 24px;
    color: #34d399;
}

.floating-badge span {
    font-weight: 600;
    color: #1e293b;
    font-size: 14px;
}

.text-content {
    padding: 0;
}

.title-wrapper {
    margin-bottom: 24px;
}

.subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffb72d;
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ffb72d, transparent);
}

.main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin: 0;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 48px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-card {
    position: relative;
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffb72d, #FFFFFF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    border-color: #ffb72d;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.stat-subtext {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.background-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffb72d 0%, #FFFFFF 100%);
    opacity: 0.05;
}

.circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .about-hero-image {
        height: 500px;
    }
}

@media (max-width: 767px) {
    .about {
        padding: 60px 0;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .about-hero-image {
        height: 400px;
    }
    
    .floating-badge {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
    }
    
    .subtitle {
        padding-left: 0;
    }
    
    .subtitle::before {
        display: none;
    }
}

/* Services Section */
.services {
    background: #0a0f14;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.services::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.services::after {
    content: '';
    position: absolute;
    top: -250px;
    left: -250px;
    width: 500px;
    height: 500px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.services-info {
    grid-column: span 4;
    grid-row: span 2;
    background: #0d1419;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.services-info:hover {
    background: linear-gradient(135deg, rgba(255, 183, 45, 0.1), transparent);
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 48px;
}

.info-badge::before {
    content: '';
    height: 4px;
    width: 24px;
    background: #0d1419;
    border-radius: 2px;
}

.info-badge span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffb72d;
}

.services-title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
}

.gradient-text {
    background: linear-gradient(135deg, #ffb72d, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-desc {
    color: #acb9bf;
    font-size: 14px;
    line-height: 1.6;
    max-width: 400px;
}

.services-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-large {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b7280;
}

.service-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.large-card {
    grid-column: span 8;
    height: 400px;
}

.small-card {
    grid-column: span 4;
    height: 320px;
}

.service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #050505 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
    opacity: 0.9;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 2;
}

.card-text {
    margin-bottom: 16px;
}

.card-heading {
    font-size: 2rem;
    font-weight: 500;
    color: white;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.service-card:hover .card-heading {
    color: #bfdbfe;
}

.card-desc {
    color: #acb9bf;
    font-size: 14px;
    line-height: 1.5;
    max-width: 500px;
}

.card-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.arrow-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-btn svg {
    width: 16px;
    height: 16px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    margin-bottom: 4px;
    transition: transform 0.3s ease;
}

.service-card:hover .card-title {
    transform: translateX(4px);
}

.card-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffb72d;
    display: block;
    margin-bottom: 16px;
}

.card-label.orange {
    color: #fb923c;
}

.arrow-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .arrow-circle {
    background: #0d1419;
}

.service-card:hover .arrow-circle.orange {
    background: #fb923c;
}

.arrow-circle svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-info,
    .large-card,
    .small-card {
        grid-column: span 1;
    }
    
    .services-info {
        min-height: 400px;
    }
    
    .large-card {
        height: 350px;
    }
    
    .small-card {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 16px;
    }
    
    .services-info {
        padding: 32px;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .card-heading {
        font-size: 1.5rem;
    }
    
    .card-content {
        padding: 24px;
    }
}

/* Benefits Section - Bento Grid */
.benefits {
    background: #0a0f14;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.benefits::before {
    content: '';
    position: fixed;
    top: 25%;
    left: 25%;
    width: 400px;
    height: 400px;
    background: rgba(37, 99, 235, 0.2);
    border-radius: 50%;
    filter: blur(128px);
    pointer-events: none;
}

.benefits::after {
    content: '';
    position: fixed;
    bottom: 0;
    right: 25%;
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    filter: blur(128px);
    pointer-events: none;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.benefits-header {
    margin-bottom: 64px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 32px;
}

.benefits-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.benefits-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #0d1419;
    border-radius: 50%;
}

.benefits-badge span {
    color: #ffb72d;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.benefits-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.05;
    color: white;
    margin: 0;
    max-width: 650px;
}

.benefits-title .highlight {
    background: linear-gradient(90deg, #ffb72d, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-subtitle {
    color: #acb9bf;
    max-width: 520px;
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    grid-auto-rows: 280px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: between;
}

.benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(59, 130, 246, 0.15), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 3;
}

.benefit-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

.benefits-grid:hover .benefit-card::before,
.benefits-grid:hover .benefit-card::after {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

.tall-card {
    grid-row: span 2;
}

.wide-card {
    grid-column: span 3;
}

.wide-support {
    grid-column: span 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.large-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 0;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    color: #ffb72d;
    transition: all 0.3s ease;
}

.large-icon svg {
    width: 32px;
    height: 32px;
}

.benefit-card:hover .benefit-icon {
    background: #0d1419;
}

.benefit-card:hover .benefit-icon svg {
    color: white;
}

.benefit-content {
    position: relative;
    z-index: 2;
}

.benefit-stat {
    font-size: 5.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.stat-percent {
    font-size: 2.5rem;
    color: #6b7280;
}

.benefit-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.3;
}

.benefit-desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: #acb9bf;
    margin: 0;
}

.badge-50 {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: #acb9bf;
    position: relative;
    z-index: 2;
    align-self: flex-start;
    font-weight: 500;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.pulse-dot {
    width: 9px;
    height: 9px;
    background: #34d399;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.live-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #34d399;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wide-card {
        grid-column: span 2;
    }
    
    .wide-support {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .benefits {
        padding: 80px 16px;
    }
    
    .benefits-title {
        font-size: 2.75rem;
    }
    
    .benefit-stat {
        font-size: 4rem;
    }
    
    .stat-percent {
        font-size: 1.75rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    
    .tall-card,
    .wide-card,
    .wide-support {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 200px;
    }
    
    .wide-support {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .benefit-card {
        padding: 24px;
    }
}

/* Advantages Section */
.advantages {
    background: #0a0f14;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.advantages-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.advantages-content {
    padding-right: 40px;
}

.advantages-header {
    margin-bottom: 64px;
}

.adv-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.adv-badge::before {
    content: '';
    height: 1px;
    width: 32px;
    background: #0d1419;
}

.adv-badge span {
    color: #ffb72d;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.advantages-title {
    font-size: 3.5rem;
    font-weight: 600;
    font-style: italic;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-gradient {
    font-style: normal;
    background: linear-gradient(90deg, white, #6b7280);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantages-subtitle {
    color: #acb9bf;
    font-size: 14px;
    line-height: 1.6;
    max-width: 500px;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.adv-item {
    position: relative;
    padding-left: 32px;
    padding-top: 16px;
    padding-bottom: 16px;
    cursor: pointer;
    opacity: 0.4;
    transition: all 0.4s ease;
}

.adv-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 0%;
    background: linear-gradient(to bottom, #ffb72d, #FFFFFF);
    transition: height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.adv-item.active {
    opacity: 1;
    padding-left: 40px;
}

.adv-item.active::before {
    height: 100%;
    opacity: 1;
}

.mobile-adv-image {
    display: none;
}

.adv-item-title {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.adv-item:hover .adv-item-title {
    color: #bfdbfe;
}

.adv-item-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #acb9bf;
    max-width: 520px;
}

.advantages-visual {
    position: relative;
    height: 600px;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    background: #0d1419;
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    z-index: 10;
    pointer-events: none;
}

.adv-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-out;
}

.adv-image.active {
    opacity: 1;
    transform: scale(1);
    z-index: 5;
}

.live-tracking-badge {
    position: absolute;
    bottom: 32px;
    right: 32px;
    z-index: 20;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tracking-pulse {
    width: 8px;
    height: 8px;
    background: #34d399;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.tracking-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
}

@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .advantages-visual {
        display: none;
    }
    
    .mobile-adv-image {
        display: block;
        border-radius: 16px;
        overflow: hidden;
        height: 256px;
        position: relative;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        margin-bottom: 24px;
    }
    
    .mobile-adv-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .mobile-img-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    }
    
    .adv-item {
        padding-left: 0;
        opacity: 1;
        margin-bottom: 48px;
    }
    
    .adv-item::before {
        display: none;
    }
    
    .adv-item.active {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .advantages {
        padding: 80px 16px;
    }
    
    .advantages-title {
        font-size: 2.5rem;
    }
    
    .adv-item-title {
        font-size: 1.5rem;
    }
}


/* Contact Section */
.contact {
    background: #0a0f14;
    padding: 120px 20px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.contact-bg-grid {
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.contact-blur {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.contact-blur-1 {
    top: 0;
    right: 0;
    width: 800px;
    height: 800px;
    background: rgba(37, 99, 235, 0.1);
    transform: translate(50%, -50%);
}

.contact-blur-2 {
    bottom: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: rgba(99, 102, 241, 0.1);
    transform: translate(-25%, 50%);
}

.contact-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 100px;
    position: relative;
    z-index: 10;
}

.contact-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.badge-line {
    height: 1px;
    width: 32px;
    background: #0d1419;
}

.badge-text {
    color: #ffb72d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: 'Bounded', sans-serif;
}

.title-italic {
    background: linear-gradient(90deg, #ffb72d, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.contact-subtitle {
    color: #acb9bf;
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 450px;
    margin-bottom: 48px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.detail-icon svg {
    width: 20px;
    height: 20px;
}

.detail-icon-blue {
    color: #ffb72d;
}

.detail-icon-green {
    color: #34d399;
}

.detail-icon-purple {
    color: #a78bfa;
}

.contact-detail-item:hover .detail-icon-blue {
    background: #0d1419;
    color: white;
}

.contact-detail-item:hover .detail-icon-green {
    background: #34d399;
    color: white;
}

.contact-detail-item:hover .detail-icon-purple {
    background: #8b5cf6;
    color: white;
}

.detail-title {
    color: white;
    font-weight: 500;
    margin-bottom: 4px;
    font-size: 1rem;
}

.detail-text {
    color: #acb9bf;
    font-size: 0.875rem;
    line-height: 1.6;
    transition: color 0.3s ease;
    direction: ltr;
    text-align: left;
}

.contact-detail-item:hover .detail-text {
    color: white;
}

.detail-subtext {
    color: #6b7280;
    font-size: 0.75rem;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-icon {
    width: 12px;
    height: 12px;
}

.status-badge {
    padding: 24px;
    border-radius: 16px;
    background: #0d1419;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.status-dots {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    gap: 4px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot-red {
    background: #ef4444;
}

.status-dot-yellow {
    background: #eab308;
}

.status-dot-green {
    background: #34d399;
}

.status-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.status-pulse-wrapper {
    position: relative;
    width: 12px;
    height: 12px;
}

.status-pulse-ring {
    position: absolute;
    inset: 0;
    background: #34d399;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-pulse-dot {
    position: relative;
    width: 12px;
    height: 12px;
    background: #34d399;
    border-radius: 50%;
}

.status-text {
    font-size: 0.75rem;
    font-family: monospace;
}

.status-online {
    color: #34d399;
    display: block;
}

.status-agents {
    color: #6b7280;
    display: block;
}

.status-count {
    color: white;
}

.contact-right {
    position: relative;
}

.form-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 256px;
    height: 256px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    z-index: 10;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 32px;
    font-family: 'Bounded', sans-serif;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 12px;
    color: white;
    outline: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-input::placeholder {
    color: #6b7280;
}

.form-input:focus {
    border-color: #ffb72d;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-input:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    color: #6b7280;
}

.form-select option {
    background: #0d1419;
    color: white;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px 35px;
    color: #000;
    border: none;
    background: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    background-image: url('../image/Shape.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 60px;
}

.form-submit:hover {
    transform: scale(1.02);
}

.submit-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.form-submit:hover .submit-arrow {
    transform: translateX(4px);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 8px;
}

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 80px 16px;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .form-container {
        padding: 32px 24px;
    }
}


/* Footer */
.footer {
    position: relative;
    padding: 96px 20px 48px;
    background: #0a0f14;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.footer-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.footer-divider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
}

.footer-glow {
    position: absolute;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 96px;
}

.footer-heading {
    font-size: 3rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: 'Bounded', sans-serif;
    font-style: italic;
}

.footer-gradient {
    font-style: normal;
    background: linear-gradient(90deg, #ffb72d, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Bounded', sans-serif;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px 35px;
    color: #000;
    border: none;
    background: none;
    transition: all 0.4s ease;
    position: relative;
    background-image: url('../image/Shape.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-width: 250px;
    min-height: 60px;
    cursor: pointer;
}

.footer-btn:hover {
    transform: scale(1.05);
}

.footer-btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.footer-btn:hover .footer-btn-icon {
    transform: rotate(45deg);
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-left: 48px;
}

.newsletter-label {
    color: #acb9bf;
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.newsletter-form {
    position: relative;
}

.newsletter-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 16px;
    font-size: 1.125rem;
    color: white;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input::placeholder {
    color: #6b7280;
}

.newsletter-input:focus {
    border-bottom-color: #ffb72d;
}

.newsletter-submit {
    position: absolute;
    right: 0;
    bottom: 16px;
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    transition: color 0.3s ease;
}

body.lang-ar .newsletter-submit {
    right: auto;
    left: 0;
}

.newsletter-submit svg {
    width: 20px;
    height: 20px;
}

.newsletter-submit:hover {
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 96px;
    padding-top: 64px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-column-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 24px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link {
    color: #acb9bf;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background: #0d1419;
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.footer-link:hover {
    color: white;
}

.footer-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #acb9bf;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 16px;
    height: 16px;
}

.social-link:hover {
    background: white;
    color: black;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 32px;
    position: relative;
    z-index: 20;
}

.footer-copyright {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.6;
}

.footer-scroll {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #6b7280;
    font-size: 0.75rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-scroll svg {
    width: 12px;
    height: 12px;
}

.footer-scroll:hover {
    color: white;
}

.footer-giant {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
}

.giant-nad {
    font-size: 18vw;
    line-height: 0.8;
    letter-spacing: -0.05em;
    background: linear-gradient(to bottom, #1a1a1a, #050505);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    user-select: none;
    pointer-events: none;
    font-family: 'Bounded', sans-serif;
    font-weight: 700;
    transform: translateY(20%);
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-newsletter {
        padding-left: 0;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 64px 16px 32px;
    }
    
    .footer-heading {
        font-size: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .footer-scroll {
        display: none;
    }
}


/* ========================================
   COMPREHENSIVE RESPONSIVE BREAKPOINTS
   ======================================== */

/* Small Mobile (320px - 374px) - iPhone SE, older Android */
@media (min-width: 320px) and (max-width: 374px) {
    .hero-title { font-size: 1.5rem; max-width: 95%; }
    .hero-description { font-size: 0.85rem; max-width: 95%; }
    .hero-tag { font-size: 0.9rem; padding: 0.75rem 1rem; }
    .hero-btn { font-size: 0.9rem; padding: 14px 28px; }
    .nav-container { padding: 0 12px; }
    .services-info { padding: 24px; }
    .services-title { font-size: 1.5rem; }
    .benefits-title { font-size: 1.75rem; }
    .advantages-title { font-size: 1.75rem; }
    .contact-title { font-size: 1.75rem; }
    .footer-heading { font-size: 1.5rem; }
}

/* Medium Mobile (375px - 413px) - iPhone 12/13/14, Galaxy S */
@media (min-width: 375px) and (max-width: 413px) {
    .hero-title { font-size: 1.75rem; max-width: 92%; }
    .hero-description { font-size: 0.9rem; max-width: 92%; }
    .services-title { font-size: 1.75rem; }
    .benefits-title { font-size: 2rem; }
    .contact-title { font-size: 2rem; }
}

/* Large Mobile (414px - 767px) - iPhone Pro Max, Plus models */
@media (min-width: 414px) and (max-width: 767px) {
    .hero-title { font-size: 2rem; max-width: 90%; }
    .hero-description { font-size: 0.95rem; max-width: 90%; }
    .services-title { font-size: 2rem; }
    .benefits-title { font-size: 2.25rem; }
    .advantages-title { font-size: 2.25rem; }
    .contact-title { font-size: 2.25rem; }
}

/* Small Tablets (768px - 1023px) - iPad Mini, small tablets */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-title { font-size: 2.75rem; max-width: 75%; }
    .hero-description { font-size: 1.1rem; max-width: 70%; }
    .nav-menu { display: flex; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .advantages-grid { grid-template-columns: 1fr; }
    .contact-container { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
}

/* Medium Tablets (1024px - 1279px) - iPad Pro, Surface */
@media (min-width: 1024px) and (max-width: 1279px) {
    .hero-title { font-size: 3rem; max-width: 70%; }
    .hero-description { font-size: 1.2rem; max-width: 65%; }
    .container { max-width: 960px; }
    .services-grid { max-width: 960px; }
    .benefits-container { max-width: 960px; }
    .advantages-grid { max-width: 960px; gap: 60px; }
    .contact-container { max-width: 960px; }
}

/* Large Tablets / Small Laptops (1280px - 1439px) */
@media (min-width: 1280px) and (max-width: 1439px) {
    .hero-title { font-size: 3.5rem; max-width: 68%; }
    .hero-description { font-size: 1.25rem; max-width: 65%; }
    .container { max-width: 1140px; }
    .services-grid { max-width: 1140px; }
    .benefits-container { max-width: 1140px; }
    .advantages-grid { max-width: 1140px; }
    .contact-container { max-width: 1140px; }
}

/* Medium Laptops (1440px - 1919px) - Standard HD displays */
@media (min-width: 1440px) and (max-width: 1919px) {
    .hero-title { font-size: 4rem; max-width: 65%; }
    .hero-description { font-size: 1.3rem; max-width: 63%; }
    .container { max-width: 1320px; }
    .nav-container { max-width: 1440px; }
    .services-grid { max-width: 1320px; }
    .benefits-container { max-width: 1320px; }
    .advantages-grid { max-width: 1320px; }
    .contact-container { max-width: 1320px; }
    .footer-container { max-width: 1320px; }
}

/* Large Laptops / Small Monitors (1920px - 2559px) - Full HD */
@media (min-width: 1920px) and (max-width: 2559px) {
    .hero-title { font-size: 4.5rem; max-width: 60%; }
    .hero-description { font-size: 1.4rem; max-width: 58%; }
    .hero-tag { font-size: 1.3rem; }
    .hero-btn { font-size: 1.2rem; padding: 20px 40px; }
    .container { max-width: 1600px; }
    .nav-container { max-width: 1600px; }
    .services-grid { max-width: 1600px; }
    .benefits-container { max-width: 1600px; }
    .advantages-grid { max-width: 1600px; }
    .contact-container { max-width: 1600px; }
    .footer-container { max-width: 1600px; }
    .services-title { font-size: 3.5rem; }
    .benefits-title { font-size: 5rem; }
    .advantages-title { font-size: 4rem; }
    .contact-title { font-size: 4rem; }
}

/* Medium Monitors (2560px - 3439px) - 2K/QHD displays */
@media (min-width: 2560px) and (max-width: 3439px) {
    .hero-title { font-size: 5.5rem; max-width: 58%; }
    .hero-description { font-size: 1.6rem; max-width: 55%; }
    .hero-tag { font-size: 1.4rem; padding: 1.25rem 2rem; }
    .hero-btn { font-size: 1.3rem; padding: 22px 45px; }
    .container { max-width: 2000px; }
    .nav-container { max-width: 2000px; }
    .services-grid { max-width: 2000px; }
    .benefits-container { max-width: 2000px; }
    .advantages-grid { max-width: 2000px; }
    .contact-container { max-width: 2000px; }
    .footer-container { max-width: 2000px; }
    .services-title { font-size: 4rem; }
    .benefits-title { font-size: 5.5rem; }
    .advantages-title { font-size: 4.5rem; }
    .contact-title { font-size: 4.5rem; }
    .main-title { font-size: 4rem; }
    .card-heading { font-size: 2.5rem; }
}

/* Large Monitors (3440px - 5119px) - Ultrawide displays */
@media (min-width: 3440px) and (max-width: 5119px) {
    .hero-title { font-size: 6.5rem; max-width: 55%; }
    .hero-description { font-size: 1.8rem; max-width: 52%; }
    .hero-tag { font-size: 1.6rem; padding: 1.5rem 2.5rem; }
    .hero-btn { font-size: 1.4rem; padding: 24px 50px; }
    .container { max-width: 2400px; }
    .nav-container { max-width: 2400px; }
    .services-grid { max-width: 2400px; }
    .benefits-container { max-width: 2400px; }
    .advantages-grid { max-width: 2400px; }
    .contact-container { max-width: 2400px; }
    .footer-container { max-width: 2400px; }
    .services-title { font-size: 4.5rem; }
    .benefits-title { font-size: 6rem; }
    .advantages-title { font-size: 5rem; }
    .contact-title { font-size: 5rem; }
    .main-title { font-size: 4.5rem; }
    .nav-logo { font-size: 2.2rem; }
}

/* Super Ultrawide (5120px+) - Samsung Odyssey Neo G9, G95SC */
@media (min-width: 5120px) {
    .hero-title { font-size: 8rem; max-width: 50%; }
    .hero-description { font-size: 2rem; max-width: 48%; }
    .hero-tag { font-size: 1.8rem; padding: 1.75rem 3rem; }
    .hero-btn { font-size: 1.6rem; padding: 28px 60px; }
    .container { max-width: 3200px; }
    .nav-container { max-width: 3200px; }
    .services-grid { max-width: 3200px; }
    .benefits-container { max-width: 3200px; }
    .advantages-grid { max-width: 3200px; }
    .contact-container { max-width: 3200px; }
    .footer-container { max-width: 3200px; }
    .services-title { font-size: 5.5rem; }
    .benefits-title { font-size: 7rem; }
    .advantages-title { font-size: 6rem; }
    .contact-title { font-size: 6rem; }
    .footer-heading { font-size: 5rem; }
    .main-title { font-size: 5.5rem; }
    .nav-logo { font-size: 2.5rem; }
    .nav-menu a { font-size: 1.1rem; }
}

/* Vertical/Portrait Monitors (height > width) */
@media (orientation: portrait) and (min-width: 1024px) {
    .hero { height: 60vh; min-height: 600px; }
    .hero-title { font-size: 2.5rem; }
    .hero-description { font-size: 1rem; }
    .advantages-visual { height: 400px; }
    .about-hero-image { height: 400px; }
}

/* 49" Odyssey OLED G9 G95SC (5120x1440) */
@media (min-width: 5120px) and (max-height: 1440px) {
    .hero { height: 100vh; }
    .hero-content { padding: 0 40px; }
    .services { padding: 100px 40px; }
    .benefits { padding: 140px 40px; }
    .advantages { padding: 140px 40px; }
    .contact { padding: 140px 40px; }
}

/* 57" Odyssey Neo G9 (7680x2160) */
@media (min-width: 7680px) {
    .hero-title { font-size: 10rem; max-width: 45%; }
    .hero-description { font-size: 2.5rem; max-width: 42%; }
    .container { max-width: 4800px; }
    .nav-container { max-width: 4800px; }
    .services-grid { max-width: 4800px; }
    .benefits-container { max-width: 4800px; }
    .advantages-grid { max-width: 4800px; }
    .contact-container { max-width: 4800px; }
    .footer-container { max-width: 4800px; }
    .services-title { font-size: 7rem; }
    .benefits-title { font-size: 9rem; }
    .nav-logo { font-size: 3rem; }
}

/* ========================================
   OVERFLOW PREVENTION - ALL DEVICES
   ======================================== */

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

.navbar, .hero, .hero-bg, .hero-video, .hero-img, 
.about, .services, .benefits, .advantages, .contact, .footer {
    max-width: 100vw;
    overflow-x: hidden;
}

img, video {
    max-width: 100%;
    height: auto;
}

/* Mobile specific (320px - 767px) */
@media (max-width: 767px) {
    * {
        max-width: 100vw;
    }
    
    .hero-content, .services-info, .benefits-header, 
    .advantages-content, .contact-left, .form-container {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* Tablets (768px - 1279px) */
@media (min-width: 768px) and (max-width: 1279px) {
    .container, .nav-container, .services-grid, 
    .benefits-container, .advantages-grid, 
    .contact-container, .footer-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Ultra-wide monitors (3440px+) */
@media (min-width: 3440px) {
    body {
        max-width: 100vw;
    }
    
    .hero-topics-container, .topics-list {
        max-width: 100vw;
    }
}


/* Mobile fix - prevents body background from showing as white line */
@media (max-width: 768px) {
    html {
        background: #0a0f14 !important;
    }
    body, .services, .benefits, .advantages, .contact, .footer {
        background: #0a0f14 !important;
    }


}

/* Mobile landscape fix */
@media (max-width: 1024px) and (max-height: 768px) {
    html {
        background: #0a0f14 !important;
    }
}
