:root {
    --main-font: 'Cairo', sans-serif;
    --body-font: 'Tajawal', sans-serif;
    --primary: #12192c;
    --accent: #e67e22;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.15);
    --grad: linear-gradient(135deg, #1e3c72, #2a5298);
}

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

body {
    background: #0b0f19;
    font-family: var(--body-font);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px; 
    z-index: 2000;
    display: flex;
    align-items: center;
    transition: 0.4s ease;
}

.navbar {
    background: var(--glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    width: 95%;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img { width: 45px; height: 45px; filter: drop-shadow(0 0 8px #fff); }

.brand-text { display: flex; flex-direction: column; line-height: 1; }

.main-title {
    font-family: var(--main-font);
    font-weight: 900;
    font-size: 1.5rem;
    color: #fff;
}

.sub-title {
    font-family: var(--main-font);
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: bold;
}

.nav-links { display: flex; list-style: none; gap: 8px; }

.nav-item {
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    padding: 10px 18px;
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: 0.3s;
}

.nav-item.active {
    background: #fff;
    color: var(--primary);
}

.call-btn-desktop {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 50px;
    font-family: var(--main-font);
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
}
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center; 
    position: relative;
    overflow: hidden;
    text-align: center; 
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('images/about.png') center/cover;
    filter: brightness(0.35);
    z-index: -1;
    animation: zoomEffect 20s infinite alternate linear;
}

@keyframes zoomEffect {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 60px 40px;
    border-radius: 40px;
    max-width: 900px; 
    z-index: 10;
    animation: fadeInCard 1.5s ease;
}

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

.hero-badge {
    background: rgba(230, 126, 34, 0.2);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 6px 20px;
    border-radius: 50px;
    font-family: var(--main-font);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 25px;
    display: inline-block;
}

.hero-title {
    font-family: var(--main-font);
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(to left, #e67e22, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-para {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-main {
    background: #fff;
    color: var(--primary);
    padding: 18px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 900;
    font-family: var(--main-font);
    transition: 0.3s;
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    padding: 18px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--main-font);
    transition: 0.3s;
}

.btn-main:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(255,255,255,0.2); }
.menu-trigger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-trigger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 10px;
    transition: 0.3s;
}

.mobile-overlay {
    position: fixed;
    top: -100%; 
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 320px;
    background: rgba(11, 15, 25, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 30px;
    z-index: 1500;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--glass-border);
}

.mobile-overlay.active {
    top: 100px; 
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.m-link {
    font-family: var(--main-font);
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 15px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
}

.m-link.active {
    background: var(--accent);
    color: #fff;
}
.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230,126,34,0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    border-radius: 50%;
    animation: float 15s infinite alternate linear;
}
.b1 { top: -10%; left: -10%; }
.b2 { bottom: -10%; right: -10%; animation-delay: -7s; }

@keyframes float {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(50px, 50px) scale(1.1); }
}

@media (max-width: 992px) {
    .nav-links, .call-btn-desktop { display: none; }
    .menu-trigger { display: flex; }
    .hero-title { font-size: 2.2rem; }
    .hero-card { padding: 40px 20px; margin: 0 15px; }
    .hero-para { font-size: 1.1rem; }
    .hero-actions { flex-direction: column; }
}

.placeholder-sec { height: 100vh; display: flex; align-items: center; justify-content: center; background: #0b0f19; font-size: 2rem; border-top: 1px solid rgba(255,255,255,0.05); font-family: var(--main-font); }
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;   
    justify-content: center; 
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 10;
}

.hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 50px;
    border-radius: 40px;
    max-width: 850px; 
    width: 90%;       
    margin: 0 auto;   
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: fadeInCard 1.5s ease;
}
@media (max-width: 768px) {
    .hero-card {
        padding: 40px 20px;
        max-width: 95%;
    }
}
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%); 
    color: var(--primary);
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.reveal-tag {
    background: rgba(230, 126, 34, 0.1);
    color: var(--accent);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-family: var(--main-font);
}

.section-title {
    font-family: var(--main-font);
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--primary);
}

.section-title .highlight {
    color: var(--accent);
}

.about-p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.stat-card {
    background: #fff;
    padding: 20px 10px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.stat-num {
    font-family: var(--main-font);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
}

.stat-num::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--accent);
}

.stat-label {
    font-size: 0.85rem;
    color: #777;
    font-weight: 600;
}
.about-visual {
    position: relative;
}

.image-stack {
    position: relative;
    padding: 20px;
}

.img-main {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: 0.5s;
}

.experience-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--accent);
    color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.4);
    animation: pulse 2s infinite;
}

.exp-num { font-size: 1.8rem; font-weight: 900; line-height: 1; }
.exp-text { font-size: 0.7rem; font-weight: bold; }

.floating-box-info {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: #fff;
    color: var(--primary);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    font-weight: bold;
    border-right: 5px solid var(--accent);
    animation: float 4s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .floating-box-info {
        left: 10px;
    }
    .section-title { font-size: 2.2rem; }
}
.creative-services {
    padding: 120px 0;
    background-color: #fcfaf7; 
    overflow: hidden;
}

.services-intro-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px;
}

.badge-new {
    background: #fff;
    color: var(--accent);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.8rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    display: inline-block;
    margin-bottom: 25px;
}

.title-big {
    font-family: var(--main-font);
    font-size: 3.5rem;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.accent-color { color: var(--accent); }

.desc-wide {
    font-size: 1.2rem;
    color: #777;
    line-height: 1.8;
}
.layers-wrapper {
    display: flex;
    flex-direction: column;
    gap: 120px; 
}

.service-layer {
    display: flex;
    align-items: center;
    position: relative;
    gap: 0; 
}

.service-layer.reverse {
    flex-direction: row-reverse;
}
.layer-image {
    flex: 1;
    z-index: 1;
}

.image-mask {
    width: 100%;
    height: 500px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    clip-path: circle(70% at 50% 50%);
    transition: 0.6s ease-in-out;
}

.image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s ease;
}
.layer-text {
    flex: 1;
    background: #fff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    z-index: 2;
    margin-right: -100px; 
    position: relative;
    transition: 0.5s;
    border: 1px solid rgba(0,0,0,0.02);
}

.service-layer.reverse .layer-text {
    margin-right: 0;
    margin-left: -100px; 
}

.num {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(230, 126, 34, 0.1);
    position: absolute;
    top: -20px;
    left: 40px;
    font-family: var(--main-font);
}

.layer-text h3 {
    font-family: var(--main-font);
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.layer-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 30px;
    text-align: justify;
}

.service-tags {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.service-tags span {
    background: #f8f8f8;
    color: var(--accent);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
}
.service-layer:hover .image-mask {
    clip-path: circle(75% at 50% 50%);
}

.service-layer:hover img {
    transform: scale(1.1);
}

.service-layer:hover .layer-text {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
}
@media (max-width: 992px) {
    .service-layer, .service-layer.reverse {
        flex-direction: column;
    }
    .layer-text {
        margin: -50px 10px 0 !important;
        padding: 40px 20px;
        width: 95%;
    }
    .image-mask {
        height: 350px;
        clip-path: none;
        border-radius: 20px;
    }
    .title-big { font-size: 2.5rem; }
}
.modern-blog {
    padding: 100px 0;
    background: #fff;
}

.blog-header { text-align: center; margin-bottom: 60px; }
.blog-tag { color: var(--accent); font-weight: 900; letter-spacing: 2px; }
.blog-title { font-family: var(--main-font); font-size: 3rem; color: var(--primary); margin: 10px 0; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #fdfdfd;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s;
    border: 1px solid #eee;
}

.blog-card:hover { transform: translateY(-10px); border-color: var(--accent); }

.blog-img { position: relative; height: 220px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.blog-card:hover .blog-img img { transform: scale(1.1); }

.date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
}

.blog-info { padding: 30px; }
.blog-info h3 { font-family: var(--main-font); font-size: 1.4rem; color: var(--primary); margin-bottom: 15px; line-height: 1.4; }
.blog-info p { color: #666; font-size: 0.95rem; margin-bottom: 20px; line-height: 1.7; }

.read-more {
    background: none;
    border: none;
    color: var(--accent);
    font-weight: 900;
    font-family: var(--main-font);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.read-more:hover { gap: 20px; }
.media-gallery {
    padding: 100px 0;
    background-color: #f0f2f5; 
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-title {
    font-family: var(--main-font);
    font-size: 2.8rem;
    color: var(--primary);
    margin-top: 10px;
}
.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 280px; 
    border-radius: 25px;
    overflow: hidden;
    background: #fff;
    border: 6px solid #fff; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.gallery-item img, 
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}
.video-item {
    background: #000; 
}
.gallery-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: var(--accent);
    z-index: 10;
}
@media (max-width: 768px) {
    .images-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }
    .gallery-item {
        height: 200px; 
        border-width: 4px;
    }
    .gallery-title { font-size: 2rem; }
}
.gallery-header p {
    color: #444; 
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500; 
}
.gallery-header p strong {
    color: var(--accent);
}
.badge-gallery {
    color: #1a2a6c;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--accent); 
    padding-bottom: 5px;
}
.why-us-masterpiece {
    padding: 150px 0;
    background: #050811; 
    position: relative;
    overflow: hidden;
}
.light-trails {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.trail {
    position: absolute;
    width: 2px;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    opacity: 0.3;
    animation: drop 10s infinite linear;
}
.trail:nth-child(1) { left: 10%; animation-duration: 7s; }
.trail:nth-child(2) { left: 50%; animation-duration: 12s; }
.trail:nth-child(3) { left: 90%; animation-duration: 9s; }

@keyframes drop {
    0% { transform: translateY(-200px); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: translateY(1000px); opacity: 0; }
}

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

.massive-bg-text {
    font-size: 12rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: 20px;
    z-index: 1;
}

.header-front {
    position: relative;
    z-index: 2;
}

.neon-badge {
    color: var(--accent);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    border: 1px solid var(--accent);
    padding: 5px 20px;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(230, 126, 34, 0.3);
}

.why-title {
    font-family: var(--main-font);
    font-size: 3.5rem;
    color: #fff;
    margin-top: 25px;
}

.glow-text {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(230, 126, 34, 0.6);
}
.why-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    z-index: 5;
    position: relative;
}

.why-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 50px 30px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.why-icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(230, 126, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: var(--accent);
    transition: 0.5s;
}

.why-box h4 {
    font-family: var(--main-font);
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 20px;
}

.why-box p {
    color: #999;
    line-height: 1.8;
    font-size: 1rem;
    transition: 0.5s;
}
.box-border-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: 2px solid transparent;
    border-radius: 30px;
    pointer-events: none;
    transition: 0.5s;
}

.why-box:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 255, 255, 0.08);
}

.why-box:hover .why-icon-wrap {
    background: var(--accent);
    color: #fff;
    transform: rotateY(360deg);
    box-shadow: 0 0 30px var(--accent);
}

.why-box:hover p { color: #fff; }

.why-box:hover .box-border-glow {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(230, 126, 34, 0.4);
}
.mini-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 100px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 50px;
}

.m-stat { text-align: center; }
.m-stat span { font-size: 3rem; font-weight: 900; color: #fff; display: block; font-family: var(--main-font); }
.m-stat p { color: var(--accent); font-weight: bold; }
@media (max-width: 768px) {
    .massive-bg-text { display: none; }
    .why-title { font-size: 2.2rem; }
    .mini-stats { flex-direction: column; gap: 30px; }
}
.contact-section {
    padding: 100px 0;
    background-color: #f4f7fb; 
    text-align: center;
}

.contact-header { margin-bottom: 60px; }
.contact-badge { color: var(--accent); font-weight: 900; letter-spacing: 2px; }
.contact-title { font-family: var(--main-font); font-size: 3rem; color: var(--primary); margin: 15px 0; }

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.c-card {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    width: 100%;
    max-width: 400px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: 0.4s;
    border: 1px solid transparent;
}

.c-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
}

.call-card .c-icon { background: var(--primary); }
.whatsapp-card .c-icon { background: #25d366; }

.c-info { text-align: right; }
.c-info h3 { font-family: var(--main-font); color: var(--primary); font-size: 1.4rem; margin-bottom: 5px; }
.c-info p { font-size: 1.2rem; font-weight: 900; color: #333; margin-bottom: 10px; }
.c-action { color: var(--accent); font-weight: bold; font-size: 0.9rem; }
.c-card:hover { transform: translateY(-10px); border-color: var(--accent); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.main-footer {
    background: #12192c;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: #fff;
    font-family: var(--main-font);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: ''; position: absolute; bottom: -8px; right: 0; width: 40px; height: 2px; background: var(--accent);
}

.footer-logo { font-family: var(--main-font); font-size: 2rem; color: #fff; margin-bottom: 20px; }
.footer-logo span { color: var(--accent); }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: var(--accent); padding-right: 10px; }

.contact-list { list-style: none; }
.contact-list li { margin-bottom: 15px; display: flex; gap: 12px; align-items: center; }
.contact-list i { color: var(--accent); font-size: 1.1rem; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    text-align: center;
}
.dev-tag { margin-top: 10px; font-weight: bold; }
.dev-tag a { color: var(--accent); text-decoration: none; }
.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;
    color: #fff;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: 0.3s;
    animation: pulseFloat 2s infinite;
}

.float-wa { background: #25d366; }
.float-call { background: var(--primary); animation-delay: 1s; }

.float-btn:hover { transform: scale(1.1) rotate(10deg); }

@keyframes pulseFloat {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
    70% { box-shadow: 0 0 0 20px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
@media (max-width: 768px) {
    .contact-title { font-size: 2rem; }
    .footer-grid { text-align: center; }
    .footer-col h4::after { right: 50%; transform: translateX(50%); }
    .contact-list li { justify-content: center; }
    .floating-actions { bottom: 20px; right: 20px; }
}
header {
    position: fixed;
    top: 20px; 
    left: 0;
    width: 100%;
    z-index: 2000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: center; 
}
.navbar {
    background: var(--glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    width: 90%; 
    max-width: 1200px;
}
header.scrolled {
    top: 10px; 
}
header.scrolled .navbar {
    background: rgba(11, 15, 25, 0.95); 
    padding: 8px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.hero {
    height: 100vh;
    display: flex;
    align-items: flex-end; 
    padding-bottom: 12vh;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.hero-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 40px;
    max-width: 850px;
    width: 90%;
    z-index: 10;
}
@media (max-width: 768px) {
    header {
        top: 10px; 
    }
    .navbar {
        width: 95%;
        padding: 8px 15px;
    }
    
    .hero-title {
        font-size: 1.8rem !important; 
        margin-bottom: 15px;
    }
    
    .hero-para {
        font-size: 0.95rem !important; 
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 4px 15px;
    }

    .hero-actions {
        gap: 10px;
    }
    
    .btn-main, .btn-secondary {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .hero {
        padding-bottom: 15vh; 
    }
}