:root {
    --primary-color: #2c3e50;
    --accent-color: #3498db;
    --soft-green: #2ecc71;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.3);
    --text-color: #333;
    --light-color: #f4f7f6;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--light-color);
    color: var(--text-color);
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
#main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0px ;
    transition: var(--transition);
}

#main-header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    padding: 15px ;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-links a.active {
    background: rgba(52, 152, 219, 0.2);
    box-shadow: inset 0 0 10px rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--accent-color);
    transform: scale(1.05);
}

.btn-call {
    background: var(--soft-green);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    transition: var(--transition);
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
}
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    background: url('images/bg.png') no-repeat center center/cover;
    filter: blur(4px);
    transform: scale(1.1);
    animation: zoomAnimation 20s infinite alternate ease-in-out;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(44, 62, 80, 0.8), rgba(52, 152, 219, 0.4));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.8;
}

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

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn:hover {
    transform: translateY(-5px) scale(1.05);
}
@keyframes zoomAnimation {
    0% { transform: scale(1); filter: blur(4px); }
    100% { transform: scale(1.2); filter: blur(2px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.animate-text { animation: fadeInUp 1s both; }
.animate-text-delay { animation: fadeInUp 1s 0.3s both; }
.animate-btns { animation: fadeInUp 1s 0.6s both; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 5px;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    transition: 0.5s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.close-menu {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: 25px;
}

.sidebar-links a {
    text-decoration: none;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    display: block;
    transition: 0.3s;
}

.sidebar-links a:hover {
    color: var(--accent-color);
    padding-right: 10px;
}
@media (max-width: 992px) {
    .nav-links, .desktop-only {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
}
body, html {
    max-width: 100%;
    overflow-x: hidden;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}
.menu-toggle:hover .bar:nth-child(2) {
    width: 70%;
}
.about-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.about-visual {
    position: relative;
}

.blob-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2) 0%, rgba(46, 204, 113, 0.1) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: blobMorp 10s infinite alternate ease-in-out;
    z-index: 1;
}

@keyframes blobMorp {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    100% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
}

.image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    transform: rotate(-2deg);
    transition: var(--transition);
}

.image-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.image-wrapper img {
    width: 100%;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 10px;
    background: var(--accent-color);
    color: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.4);
    animation: float 3s infinite ease-in-out;
}

.experience-badge .num {
    display: block;
    font-size: 2rem;
    font-weight: 900;
}
.sub-title {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
    font-weight: 700;
}

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

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary-color);
}

.feature-item i {
    color: var(--soft-green);
    font-size: 1.2rem;
}

.about-stats {
    display: flex;
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.5);
    padding: 20px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    flex: 1;
}

.stat-card h3 {
    font-size: 2rem;
    color: var(--accent-color);
}
.reveal-left {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease;
}

.reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .features-list {
        justify-items: center;
    }
    .about-stats {
        justify-content: center;
    }
    .main-title {
        font-size: 2rem;
    }
    .experience-badge {
        right: 20px;
    }
}
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #94c4e5 0%, #bfdff5 100%);
    position: relative;
    overflow: hidden;
}
.services-bg-shapes .shape {
    position: absolute;
    filter: blur(80px);
    z-index: 0;
    border-radius: 50%;
}

.s1 {
    width: 400px;
    height: 400px;
    background: rgba(52, 152, 219, 0.2);
    top: -100px;
    right: -100px;
    animation: moveShape 15s infinite alternate;
}

.s2 {
    width: 300px;
    height: 300px;
    background: rgba(46, 204, 113, 0.15);
    bottom: -50px;
    left: -50px;
    animation: moveShape 20s infinite alternate-reverse;
}

@keyframes moveShape {
    from { transform: translate(0, 0); }
    to { transform: translate(50px, 100px); }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.title-line {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 15px auto;
    border-radius: 2px;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    font-size: 1.1rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    padding: 30px ;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.glass-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border: 1px solid var(--accent-color);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.5s;
}

.glass-card:hover .card-icon {
    background: var(--accent-color);
    color: white;
    transform: rotateY(360deg);
}

.glass-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.glass-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-list {
    list-style: none;
    text-align: right;
    margin-bottom: 25px;
}

.card-list li {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-list li i {
    color: var(--soft-green);
}

.card-btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}

.card-btn:hover {
    background: var(--accent-color);
    letter-spacing: 1px;
}
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    .main-title {
        font-size: 1.8rem;
    }
    .services-grid {
    grid-template-columns: repeat(1, minmax(280px, 1fr));
   
}
}
.gallery-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    gap: 20px;
    grid-auto-flow: dense; 
}
.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.glass-frame {
    width: 100%;
    height: 100%;
    border: 5px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.img-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(transparent, rgba(52, 152, 219, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease;
}

.img-overlay span {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    transform: translateY(20px);
    transition: 0.5s;
}

.gallery-item:hover .img-overlay {
    bottom: 0;
}

.gallery-item:hover .img-overlay span {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(2deg);
}
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(255,255,255,0.2);
    animation: zoomIn 0.4s ease;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 50px;
    cursor: pointer;
}

@keyframes zoomIn {
    from { transform: scale(0.5); }
    to { transform: scale(1); }
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}
.pro-why-section {
    padding: 150px 0;
    background: #05080f; 
    position: relative;
    overflow: hidden;
}
.bg-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(52, 152, 219, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(52, 152, 219, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.ultra-title {
    font-size: 3.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 900;
    letter-spacing: -1px;
}

.neon-badge {
    display: table;
    margin: 0 auto 20px;
    background: rgba(0, 210, 255, 0.1);
    color: #00d2ff;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #00d2ff;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
}

.staggered-cards-container {
    display: flex;
    flex-direction: column;
    gap: 100px;
    position: relative;
    z-index: 1;
}
.mega-card {
    width: 60%;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-right { align-self: flex-start; }
.card-left { align-self: flex-end; }

.card-glass-content {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.card-number {
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    z-index: -1;
}

.card-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 30px;
    box-shadow: 0 15px 30px rgba(0, 210, 255, 0.3);
}

.mega-card h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
}

.mega-card p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.8;
}
.neon-line-glow, .neon-line-glow-green {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    z-index: 1;
    border-radius: 45px;
    opacity: 0.3;
    filter: blur(20px);
    transition: 0.5s;
}
.neon-line-glow { background: linear-gradient(45deg, #00d2ff, transparent, #3a7bd5); }
.neon-line-glow-green { background: linear-gradient(45deg, #2ecc71, transparent, #27ae60); }
.mega-card:hover {
    transform: translateY(-20px) scale(1.02);
}
.mega-card:hover .neon-line-glow, .mega-card:hover .neon-line-glow-green {
    opacity: 0.8;
    filter: blur(30px);
}
@media (max-width: 992px) {
    .mega-card { width: 100%; }
    .ultra-title { font-size: 2.2rem; }
    .card-glass-content { padding: 30px; }
}
.contact-section {
    position: relative;
    padding: 100px 0;
    background: #05080f; 
    overflow: hidden;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.contact-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/bg.png');
    background-size: cover;
    background-position: center;
    filter: blur(15px) brightness(0.3); 
    transform: scale(1.1); 
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.neon-badge {
    display: inline-block;
    padding: 8px 25px;
    background: rgba(0, 210, 255, 0.1);
    color: #00d2ff;
    border: 1px solid #00d2ff;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
    margin-bottom: 20px;
}

.ultra-title-light {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(to bottom, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.contact-flex-layout {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}
.contact-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 40px;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.contact-glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}
.contact-icon {
    width: 75px;
    height: 75px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    transition: 0.5s;
}

.phone-icon { background: rgba(52, 152, 219, 0.2); color: #3498db; }
.whatsapp-icon { background: rgba(46, 204, 113, 0.2); color: #2ecc71; }
.map-icon { background: rgba(231, 76, 60, 0.2); color: #e74c3c; }

.contact-glass-card:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 20px currentColor;
}
.contact-glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-detail {
    font-size: 1.3rem;
    font-weight: 900;
    color: #cbd5e1;
}
.full-card {
    flex-direction: row !important; 
    justify-content: space-between !important;
    text-align: right;
    padding: 40px 60px !important;
}

.full-card-info {
    flex: 1;
    margin-right: 30px;
}

.full-card-info h3 { margin-bottom: 5px; }
.full-card-info p { color: #94a3b8; font-size: 0.95rem; margin-bottom: 10px; }
.contact-detail-small { font-size: 0.85rem; color: #64748b; font-family: monospace; }
.map-hint-btn {
    background: #e74c3c;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
    transition: 0.3s;
    white-space: nowrap;
    margin: 10px 20px;
}

.full-card:hover .map-hint-btn {
    transform: scale(1.1);
    background: #ff4d4d;
}
.contact-glass-card::before {
    content: "";
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-25deg);
    transition: 0.7s;
}

.contact-glass-card:hover::before {
    left: 150%;
}
@media (max-width: 768px) {
    .contact-row {
        grid-template-columns: 1fr; 
    }
    .full-card {
        flex-direction: column !important;
        text-align: center !important;
        padding: 30px !important;
    }
    .full-card-info { margin-right: 0; margin-bottom: 20px; }
    .ultra-title-light { font-size: 2.2rem; }
    .contact-section { padding: 60px 0; }
}
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: 1s all ease;
}
.reveal-up.active { opacity: 1; transform: translateY(0); }
.reveal-left { transform: translateX(50px); }
.reveal-right { transform: translateX(-50px); }
.reveal-left.active, .reveal-right.active { opacity: 1; transform: translateX(0); }
.main-footer {
    background: #0b0f19;
    color: #fff;
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer-about {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
    display: block;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-right: 10px;
}

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.5;
}

.contact-info-list i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 5px;
}
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

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

.developer-link a {
    color: #00d2ff;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px dashed #00d2ff;
}
.floating-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.call-float {
    background: #3498db;
    animation: pulse-blue 2s infinite;
}

.whatsapp-float {
    background: #2ecc71;
    animation: pulse-green 2s infinite;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

@keyframes pulse-blue {
    0% { box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(52, 152, 219, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 152, 219, 0); }
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}
@media (max-width: 768px) {
    .floating-container {
        bottom: 20px;
        left: 20px;
    }
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
@media (max-width: 992px) {
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 35px;
        height: 25px;
        cursor: pointer;
        z-index: 9999;
    }
    .menu-toggle .bar {
        display: block;
        width: 100%;
        height: 4px;
        background-color: #00d2ff; 
        border-radius: 5px;
        transition: all 0.3s ease-in-out;
    }

    .nav-links, .desktop-only {
        display: none !important;
    }
}