:root {
    --dark-bg: rgba(1, 25, 59, 1);
    --text-white: rgba(245, 245, 245, 1);
    --muted-bg: rgba(44, 49, 66, 1);
    --brand-orange: rgba(250, 108, 2, 1);
    --brand-blue: rgba(62, 142, 184, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Cairo', sans-serif; scroll-behavior: smooth; }
body { background: var(--dark-bg); color: var(--text-white); overflow-x: hidden; }

#loading-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--dark-bg);
    z-index: 10000; display: flex; justify-content: center; align-items: center; transition: 0.8s;
}
#loading-screen img { width: 120px; animation: breathe 2s infinite; }
@keyframes breathe { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.1); opacity: 1; } }

.luxury-pattern {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(30deg, #01193b 12%, transparent 12.5%, transparent 87%, #01193b 87.5%, #01193b),
        linear-gradient(150deg, #01193b 12%, transparent 12.5%, transparent 87%, #01193b 87.5%, #01193b),
        linear-gradient(30deg, #01193b 12%, transparent 12.5%, transparent 87%, #01193b 87.5%, #01193b),
        linear-gradient(150deg, #01193b 12%, transparent 12.5%, transparent 87%, #01193b 87.5%, #01193b),
        linear-gradient(60deg, #022452 25%, transparent 25.5%, transparent 75%, #022452 75%, #022452),
        linear-gradient(60deg, #022452 25%, transparent 25.5%, transparent 75%, #022452 75%, #022452);
    background-size: 80px 140px; background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
    z-index: -2; opacity: 0.4;
}

.glow-orb { position: fixed; border-radius: 50%; filter: blur(100px); z-index: -1; opacity: 0.2; animation: moveOrb 20s infinite alternate; }
.orb-1 { width: 600px; height: 600px; background: var(--brand-orange); top: -200px; right: -200px; }
.orb-2 { width: 500px; height: 500px; background: var(--brand-blue); bottom: -150px; left: -150px; }
@keyframes moveOrb { from { transform: translate(0,0); } to { transform: translate(100px, 100px); } }

.top-header { position: fixed; top: 0; width: 100%; z-index: 1000; transition: 0.3s; }
.glass-navigation { background: rgba(1, 25, 59, 0.4); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.1); padding: 12px 0; }
.nav-inside { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 4%; }
.brand-identity { display: flex; align-items: center; gap: 12px; }
.brand-identity img { width: 50px; }
.main-title-text { display: block; font-size: 24px; font-weight: 900; line-height: 1; }
.sub-title-text { font-size: 10px; color: var(--brand-orange); font-weight: bold; }

.desktop-links { display: flex; list-style: none; gap: 8px; }
.nav-item {
    text-decoration: none; color: var(--text-white); font-size: 14px; font-weight: 600;
    padding: 8px 16px; border-radius: 50px; transition: 0.3s;
}
.nav-item.active { background: var(--brand-orange); color: #fff; box-shadow: 0 8px 20px rgba(250, 108, 2, 0.3); }

.premium-call-btn {
    text-decoration: none; background: #fff; color: var(--dark-bg); padding: 10px 22px;
    border-radius: 50px; font-weight: 900; font-size: 14px; box-shadow: 0 4px 15px rgba(255,255,255,0.2);
    transition: 0.3s; display: inline-block;
}
.premium-call-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255,255,255,0.3); }

.compact-sidebar {
    position: fixed; top: 0; right: -50%; width: 50%; height: 100vh;
    background: rgba(44, 49, 66, 0.98); backdrop-filter: blur(25px); z-index: 2000;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1); border-left: 2px solid var(--brand-orange);
}
.compact-sidebar.active { right: 0; }
.sidebar-header { padding: 20px; text-align: left; }
.close-sidebar-btn { background: none; border: none; color: var(--brand-orange); font-size: 40px; cursor: pointer; }
.sidebar-links-wrapper { display: flex; flex-direction: column; padding: 10px; gap: 10px; }
.sidebar-link {
    text-decoration: none; color: var(--text-white); padding: 15px 20px; border-radius: 12px;
    font-size: 14px; font-weight: 700; transition: 0.3s; border-right: 4px solid transparent;
}
.sidebar-link.active { background: rgba(250, 108, 2, 0.15); color: var(--brand-orange); border-right: 4px solid var(--brand-orange); }

.hero-section { min-height: 100vh; display: flex; align-items: center; padding: 120px 4% 60px; }
.hero-container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.main-heading { font-size: 48px; font-weight: 900; line-height: 1.2; margin-bottom: 25px; color: #fff; }
.main-heading span { color: var(--brand-orange); text-shadow: 0 0 30px rgba(250, 108, 2, 0.3); }
.main-paragraph { font-size: 18px; line-height: 1.8; color: rgba(255,255,255,0.8); margin-bottom: 35px; text-align: justify; }

.keyword-tags { display: flex; gap: 12px; flex-wrap: wrap; }
.tag-item { background: rgba(62, 142, 184, 0.1); border: 1px solid var(--brand-blue); padding: 6px 18px; border-radius: 8px; font-size: 13px; font-weight: 700; color: var(--brand-blue); }

.action-card-glass {
    background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(20px); padding: 50px; border-radius: 30px; box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}
.card-title { font-size: 24px; margin-bottom: 30px; color: #fff; position: relative; display: inline-block; }
.card-title::after { content: ''; position: absolute; bottom: -10px; right: 0; width: 50px; height: 3px; background: var(--brand-orange); }

.action-buttons-stack { display: flex; flex-direction: column; gap: 20px; }
.hero-btn-call, .hero-btn-whatsapp {
    text-decoration: none; padding: 20px; border-radius: 15px; font-size: 18px; font-weight: 900;
    text-align: center; color: #fff; transition: 0.4s;
}
.hero-btn-call { background: var(--brand-orange); box-shadow: 0 10px 30px rgba(250, 108, 2, 0.3); }
.hero-btn-whatsapp { background: #25d366; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3); }
.hero-btn-call:hover, .hero-btn-whatsapp:hover { transform: translateY(-5px) scale(1.02); }

.hamburger-icon { display: none; flex-direction: column; gap: 6px; cursor: pointer; }
.hamburger-icon span { width: 28px; height: 3px; background: #fff; border-radius: 10px; }

@media (max-width: 992px) {
    .desktop-links, .premium-call-btn { display: none; }
    .hamburger-icon { display: flex; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .main-heading { font-size: 30px; }
    .main-paragraph { font-size: 15px; text-align: center; }
    .keyword-tags { justify-content: center; }
    .action-card-glass { padding: 30px; }
}
.about-ultra-section {
    background: #ffffff;
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
}

.luxury-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-top-branding {
    text-align: center;
    margin-bottom: 80px;
}

.badge {
    background: rgba(250, 108, 2, 0.1);
    color: var(--brand-orange);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid var(--brand-orange);
}

.section-title-bold {
    font-size: 45px;
    font-weight: 900;
    color: var(--dark-bg);
}

.section-title-bold span {
    color: var(--brand-blue);
    position: relative;
}

.accent-line {
    width: 120px;
    height: 6px;
    background: #eee;
    margin: 25px auto;
    border-radius: 10px;
    position: relative;
}

.accent-line span {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--brand-orange);
    border-radius: 10px;
    animation: lineMove 3s infinite alternate;
}

@keyframes lineMove {
    from { right: 0; }
    to { right: 60%; }
}

.about-main-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: flex-start;
}

.about-sub-heading {
    font-size: 26px;
    font-weight: 800;
    color: var(--brand-orange);
    margin-bottom: 25px;
    line-height: 1.4;
    border-right: 5px solid var(--brand-blue);
    padding-right: 20px;
}

.about-text-content {
    font-size: 17px;
    line-height: 2.1;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.about-text-content span, .about-text-content strong {
    color: var(--dark-bg);
    background: rgba(62, 142, 184, 0.05);
    padding: 0 5px;
    font-weight: 800;
}

.stats-dynamic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.stat-item-card {
    padding: 40px 25px;
    border-radius: 30px;
    text-align: center;
    transition: 0.5s;
    border-bottom: 8px solid transparent;
}

.stat-circle {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.stat-item-card h4 { font-size: 32px; font-weight: 900; color: var(--dark-bg); }
.stat-item-card h5 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.stat-item-card p { font-size: 13px; font-weight: 600; opacity: 0.8; }

.color-blue { background: #f0f7ff; border-color: var(--brand-blue); color: var(--brand-blue); }
.color-orange { background: #fff8f0; border-color: var(--brand-orange); color: var(--brand-orange); }
.color-dark { background: #f4f5f7; border-color: var(--dark-bg); color: var(--dark-bg); }
.color-blue-light { background: #effdfd; border-color: #3eb8b8; color: #3eb8b8; }

.stat-item-card:hover { transform: translateY(-15px); box-shadow: 0 25px 50px rgba(0,0,0,0.1); }

.about-footer-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 100px;
}

.feat-card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: 0.4s;
}

.feat-card:hover { border-color: var(--brand-orange); background: var(--dark-bg); }
.feat-card:hover h6, .feat-card:hover p { color: #fff; }

.f-icon { font-size: 45px; margin-bottom: 20px; display: block; }
.feat-card h6 { font-size: 20px; font-weight: 900; color: var(--dark-bg); margin-bottom: 15px; transition: 0.3s; }
.feat-card p { font-size: 15px; color: #666; transition: 0.3s; }

@media (max-width: 992px) {
    .about-main-wrapper, .about-footer-features { grid-template-columns: 1fr; }
    .section-title-bold { font-size: 30px; }
    .stats-dynamic-grid { grid-template-columns: 1fr 1fr; }
}
.services-ultra {
    background-color: rgba(44, 49, 66, 1);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: 1450px;
    margin: 0 auto;
}

.services-intro {
    text-align: center;
    margin-bottom: 70px;
}

.label {
    color: var(--brand-orange);
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 2px;
    background: rgba(250, 108, 2, 0.1);
    padding: 5px 20px;
    border-radius: 50px;
    display: inline-block;
}

.section-title-light {
    font-size: 45px;
    font-weight: 900;
    color: #fff;
    margin-top: 15px;
}

.section-title-light span {
    color: var(--brand-orange);
}

.luxury-separator {
    width: 100px;
    height: 5px;
    background: linear-gradient(to right, var(--brand-orange), var(--brand-blue));
    margin: 20px auto;
    border-radius: 10px;
}

.intro-desc {
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
}

.services-grid-two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 40px;
}

.service-card-premium {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px 40px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(250, 108, 2, 0.1), transparent);
    z-index: -1;
}

.card-icon-box {
    font-size: 50px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card-premium h3 {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 25px;
    transition: 0.3s;
    line-height: 1.4;
}

.service-card-premium p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: justify;
}

.service-card-premium p span {
    color: var(--brand-orange);
    font-weight: 800;
}

.card-list {
    list-style: none;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.card-list li {
    color: var(--brand-blue);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-list li::before {
    content: '◈';
    color: var(--brand-orange);
}

.service-card-premium:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--brand-orange);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.service-card-premium:hover .card-icon-box {
    background: var(--brand-orange);
    transform: scale(1.1);
}

.service-card-premium:hover h3 {
    color: var(--brand-orange);
}

@media (max-width: 992px) {
    .services-grid-two-cols { grid-template-columns: 1fr; }
    .section-title-light { font-size: 32px; }
    .service-card-premium { padding: 30px; }
}
.gallery-premium-section {
    background: #fdfdfd; /* خلفية فاتحة جداً لإبراز الصور */
    padding: 100px 5%;
    position: relative;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-intro {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-badge {
    color: var(--brand-orange);
    background: rgba(250, 108, 2, 0.1);
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
}

.gallery-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--dark-bg);
}

.gallery-title span {
    color: var(--brand-blue);
}

.gallery-line {
    width: 80px;
    height: 4px;
    background: var(--brand-orange);
    margin: 20px auto;
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 10px;
}

.gallery-item {
    position: relative;
    height: 300px; /* توحيد الطول لجميع الصور */
    border-radius: 20px;
    overflow: hidden;
    background: #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* لضمان ملء المساحة بدون تشويه */
    transition: 0.8s ease;
    filter: grayscale(20%); /* لمسة سينمائية بسيطة */
}

/* الأنميشن عند التحويم */
.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    z-index: 2;
}

.gallery-item:hover img {
    transform: scale(1.15);
    filter: grayscale(0%);
}

/* إضافة لمعة خفيفة تظهر عند التحويم */
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.gallery-item:hover::after {
    left: 150%;
}

@media (max-width: 768px) {
    .gallery-title { font-size: 28px; }
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); /* صورتين في السطر للموبايل */
        gap: 10px;
    }
    .gallery-item { height: 200px; }
}
.blog-dark-section {
    background: rgba(1, 25, 59, 1);
    padding: 100px 5%;
}
.blog-container { max-width: 1400px; margin: 0 auto; }
.blog-header { text-align: center; margin-bottom: 60px; }
.blog-label { color: var(--brand-orange); font-weight: 900; background: rgba(255,255,255,0.05); padding: 5px 20px; border-radius: 50px; font-size: 14px; }
.blog-main-title { font-size: 40px; color: #fff; margin-top: 15px; }
.blog-main-title span { color: var(--brand-orange); }
.blog-divider { width: 80px; height: 4px; background: var(--brand-blue); margin: 20px auto; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.blog-card { background: rgba(255,255,255,0.03); border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); transition: 0.4s; }
.blog-card:hover { transform: translateY(-10px); border-color: var(--brand-orange); }
.blog-img-box { height: 250px; overflow: hidden; }
.blog-img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.blog-card:hover img { transform: scale(1.1); }
.blog-info { padding: 30px; }
.blog-info h3 { color: #fff; font-size: 20px; margin-bottom: 15px; line-height: 1.5; }
.blog-info p { color: #ccc; font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.read-more-btn { color: var(--brand-orange); text-decoration: none; font-weight: 900; font-size: 15px; border-bottom: 2px solid var(--brand-orange); padding-bottom: 5px; }
.testimonials-artistic {
    padding: 100px 5%;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.t-container {
    max-width: 1300px;
    margin: 0 auto;
}

.t-header-box {
    text-align: center;
    margin-bottom: 70px;
}

.t-badge {
    color: rgba(250, 108, 2, 1);
    font-weight: 900;
    font-size: 14px;
    background: rgba(250, 108, 2, 0.1);
    padding: 6px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
}

.t-main-title {
    font-size: 42px;
    font-weight: 900;
    color: rgba(1, 25, 59, 1);
}

.t-main-title span {
    color: rgba(62, 142, 184, 1);
}

.t-accent-line {
    width: 80px;
    height: 4px;
    background: rgba(250, 108, 2, 1);
    margin: 20px auto;
    border-radius: 10px;
}

.t-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.t-card-art {
    background: #fdfdfd;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.t-quote {
    font-family: serif;
    font-size: 100px;
    color: rgba(250, 108, 2, 0.1);
    position: absolute;
    top: 0;
    right: 20px;
    line-height: 1;
    z-index: -1;
}

.t-comment {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
    text-align: justify;
    font-weight: 400;
}

.t-author {
    font-size: 18px;
    font-weight: 900;
    color: rgba(1, 25, 59, 1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.t-author::before {
    content: '';
    width: 20px;
    height: 3px;
    background: rgba(62, 142, 184, 1);
    display: block;
}

.t-card-art:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(1, 25, 59, 0.1);
    background: #fff;
    border-color: rgba(62, 142, 184, 0.3);
}

@media (max-width: 992px) {
    .t-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .t-grid { grid-template-columns: 1fr; }
    .t-main-title { font-size: 28px; }
    .t-card-art { padding: 30px; }
}
.faq-section-premium {
    background-color: rgb(48, 114, 150);
    padding: 100px 5%;
    position: relative;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-badge {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
}

.faq-title {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    margin-top: 15px;
}

.faq-title span {
    color: rgba(250, 108, 2, 1);
}

.faq-divider {
    width: 60px;
    height: 4px;
    background: #fff;
    margin: 20px auto;
    border-radius: 10px;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.faq-arrow {
    color: #fff;
    font-size: 12px;
    transition: 0.4s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    background: rgba(255, 255, 255, 0.03);
}

.faq-answer p {
    padding: 0 30px 25px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    text-align: justify;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(250, 108, 2, 0.5);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: rgba(250, 108, 2, 1);
}

@media (max-width: 768px) {
    .faq-title { font-size: 28px; }
    .faq-question h3 { font-size: 15px; }
    .faq-answer p { font-size: 13px; }
}
.why-steel-master {
    background-color: rgba(1, 25, 59, 1);
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
}

.why-bg-fx {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(250, 108, 2, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(62, 142, 184, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.why-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.why-header-top {
    text-align: center;
    margin-bottom: 100px;
}

.badge-glow {
    color: rgba(250, 108, 2, 1);
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 2px;
    background: rgba(250, 108, 2, 0.1);
    padding: 8px 25px;
    border-radius: 50px;
    border: 1px solid rgba(250, 108, 2, 0.3);
    box-shadow: 0 0 20px rgba(250, 108, 2, 0.1);
}

.why-title-fx {
    font-size: 45px;
    font-weight: 900;
    color: #fff;
    margin-top: 25px;
}

.why-title-fx span {
    color: rgba(250, 108, 2, 1);
}

.title-accent-glow {
    width: 60px;
    height: 4px;
    background: rgba(250, 108, 2, 1);
    margin: 25px auto;
    box-shadow: 0 0 15px rgba(250, 108, 2, 0.8);
}

.why-creative-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.why-node {
    flex: 1 1 500px;
    max-width: 600px;
    background: rgba(44, 49, 66, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 50px;
    position: relative;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.node-1 { transform: translateY(0); }
.node-2 { transform: translateY(60px); }
.node-3 { transform: translateY(-30px); }
.node-4 { transform: translateY(30px); }

.node-icon {
    font-size: 50px;
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(250, 108, 2, 0.4));
}

.why-node h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.why-node p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 16px;
    text-align: justify;
}

.node-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(250, 108, 2, 0.1), transparent);
    opacity: 0;
    transition: 0.5s;
    border-radius: 40px;
    z-index: -1;
}

.why-node:hover {
    transform: scale(1.05) translateY(0);
    border-color: rgba(250, 108, 2, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.why-node:hover .node-glow {
    opacity: 1;
}

@media (max-width: 992px) {
    .node-1, .node-2, .node-3, .node-4 {
        transform: none;
        flex: 1 1 100%;
    }
    .why-title-fx { font-size: 30px; }
    .why-creative-layout { gap: 20px; }
    .why-node { padding: 35px; }
}
.contact-final-section {
    padding: 100px 5%;
    background: transparent;
    position: relative;
}

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

.contact-head {
    text-align: center;
    margin-bottom: 60px;
}

.c-top-badge {
    background: rgba(250, 108, 2, 1);
    color: #fff;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(250, 108, 2, 0.4);
}

.c-title-main {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    margin-top: 25px;
}

.c-title-main span {
    color: rgba(62, 142, 184, 1);
}

.c-line-glow {
    width: 70px;
    height: 4px;
    background: rgba(250, 108, 2, 1);
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(250, 108, 2, 1);
}

.contact-master-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.c-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.solid-c {
    background: rgba(1, 25, 59, 1);
    padding: 35px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    border: 2px solid rgba(62, 142, 184, 0.2);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.s-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(44, 49, 66, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 30px;
    color: #fff;
    flex-shrink: 0;
}

.s-info-box h3 {
    color: rgba(250, 108, 2, 1);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 5px;
}

.s-info-box span {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.call-theme:hover { border-color: #fff; transform: translateY(-10px); background: #0b2e5e; }
.wa-theme:hover { border-color: #25d366; transform: translateY(-10px); background: rgba(37, 211, 102, 0.1); }
.fb-theme:hover { border-color: #1877f2; transform: translateY(-10px); background: rgba(24, 119, 242, 0.1); }
.tt-theme:hover { border-color: #ff0050; transform: translateY(-10px); background: rgba(255, 0, 80, 0.1); }

.loc-theme {
    width: 100%;
    justify-content: center;
    background: rgba(44, 49, 66, 1);
    border-color: rgba(250, 108, 2, 0.3);
}

@media (max-width: 992px) {
    .c-row-split { grid-template-columns: 1fr; }
    .solid-c { padding: 25px; }
    .c-title-main { font-size: 26px; }
}
.footer-master {
    background: rgba(1, 25, 59, 1);
    padding: 80px 5% 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.f-logo { color: rgba(250, 108, 2, 1); font-weight: 900; margin-bottom: 20px; }
.f-desc { color: rgba(255,255,255,0.7); line-height: 1.8; font-size: 14px; }
.footer-col h3 { color: #fff; margin-bottom: 25px; font-size: 18px; position: relative; padding-bottom: 10px; }
.footer-col h3::after { content: ''; position: absolute; bottom: 0; right: 0; width: 40px; height: 2px; background: rgba(250, 108, 2, 1); }
.f-links { list-style: none; }
.f-links li { margin-bottom: 12px; }
.f-links a { color: rgba(255,255,255,0.7); text-decoration: none; transition: 0.3s; font-size: 14px; }
.f-links a:hover { color: rgba(250, 108, 2, 1); padding-right: 10px; }
.f-contact { list-style: none; color: rgba(255,255,255,0.7); font-size: 14px; }
.f-contact li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.f-contact i { color: rgba(250, 108, 2, 1); }

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 13px; }
.gmt-link { margin-top: 10px; }
.gmt-link a { color: rgba(62, 142, 184, 1); text-decoration: none; font-weight: 900; }

.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.wa-float { background: #25d366; }
.call-float { background: rgba(250, 108, 2, 1); }
.float-btn:hover { transform: scale(1.1) rotate(10deg); }

@media (max-width: 992px) {
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-col h3::after { right: 50%; transform: translateX(50%); }
    .f-contact li { justify-content: center; }
    
    .hero-h1 { font-size: 1.8rem !important; }
    .hero-p { font-size: 0.8rem !important; line-height: 1.6 !important; }
    
    .gallery-grid { grid-template-columns: 1fr !important; }
    .gallery-item { height: 250px !important; }
    
    .contact-master-grid { gap: 15px !important; }
    .solid-c { padding: 20px !important; }
    .s-info-box h3 { font-size: 16px !important; }
    .s-info-box span { font-size: 13px !important; }
}

@media (max-width: 480px) {
    .floating-actions { bottom: 20px; right: 20px; }
    .float-btn { width: 50px; height: 50px; font-size: 20px; }
}
@media (max-width: 768px) {
    .reveal-text, .main-title, .hero-h1 {
        font-size: 18px !important;
        line-height: 1.4 !important;
    }
    .hero-p, .main-paragraph {
        font-size: 11px !important;
        line-height: 1.6 !important;
    }
}
@media (max-width: 768px) {
    #home, .hero, .hero-section {
        padding-top: 140px !important;
    }
}
@media (max-width: 768px) {
    .about-stats, .stats-grid, .stats-dynamic-grid {
        grid-template-columns: 1fr !important;
    }
}