@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&display=swap');

:root {
    --glass-color: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --accent-blue: #00d2ff;
    --accent-purple: #9d50bb;
    --text-main: #ffffff;
    --transition-slow: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Cairo', sans-serif;
    background: #050b18;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

.glass-navbar {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    height: 80px;
    background: var(--glass-color);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    z-index: 2000;
    transition: var(--transition-slow);
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
    animation: rotateIcon 4s infinite linear;
}

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

.logo-text span {
    font-weight: 900;
    font-size: 1.1rem;
    background: linear-gradient(to right, #fff, var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 50px;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.3);
    transform: translateY(-2px);
}

.call-action-btn {
    text-decoration: none;
    background: #fff;
    color: #050b18;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-slow);
}

.call-action-btn:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.hero-wrapper {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-animate {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/bg.png') no-repeat center center;
    background-size: cover;
    filter: blur(8px);
    animation: zoomInOut 25s infinite alternate;
    z-index: -2;
}

@keyframes zoomInOut {
    0% { transform: scale(1); }
    100% { transform: scale(1.3) rotate(2deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(5, 11, 24, 0.4) 0%, rgba(5, 11, 24, 0.9) 100%);
    z-index: -1;
}

.hero-inner {
    max-width: 1000px;
    text-align: center;
    padding: 0 20px;
}

.hero-inner h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-inner h2 {
    font-size: clamp(1.2rem, 3vw, 2.2rem);
    color: var(--accent-blue);
    margin-bottom: 25px;
    font-weight: 600;
}

.hero-inner p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-btn {
    padding: 18px 45px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: var(--transition-slow);
}

.primary-glass {
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    color: white;
    box-shadow: 0 15px 35px rgba(0, 210, 255, 0.3);
}

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

.hero-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

.mobile-toggler {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggler span {
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 10px;
    transition: 0.4s;
}

.side-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100vh;
    background: rgba(5, 11, 24, 0.9);
    backdrop-filter: blur(25px);
    z-index: 3000;
    transition: 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    display: flex;
    align-items: center;
    border-left: 1px solid var(--glass-border);
}

.side-drawer.open {
    right: 0;
}

.drawer-links {
    list-style: none;
    width: 100%;
    padding: 0 30px;
}

.drawer-link {
    text-decoration: none;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    display: block;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.drawer-link.active {
    color: var(--accent-blue);
    padding-right: 15px;
}

.placeholder-section {
    height: 100vh;
    border-top: 1px solid var(--glass-border);
}

@media (max-width: 992px) {
    .nav-menu { display: none; }
    .mobile-toggler { display: flex; }
    .call-action-btn { display: none; }
    .glass-navbar { height: 70px; top: 15px; }
    .nav-container { padding: 0 25px; }
}

@media (max-width: 600px) {
    .side-drawer { width: 70%; }
    .hero-actions { flex-direction: column; width: 100%; }
    .logo-text span { font-size: 0.9rem; }
    .hero-inner h1 { font-size: 1.8rem; }
}

.animate-text { animation: fadeInUp 1s forwards; opacity: 0; }
.animate-text-delay { animation: fadeInUp 1s 0.3s forwards; opacity: 0; }
.animate-p { animation: fadeInUp 1s 0.6s forwards; opacity: 0; }

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 25px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    background: #fff;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    border-radius: 2px;
    animation: scrollMove 2s infinite;
}

@keyframes scrollMove {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}
.logo-text span { font-size: 0.95rem; }
.nav-link { font-size: 0.9rem; }
.call-action-btn { font-size: 0.9rem; padding: 10px 20px; }
.hero-inner h1 { font-size: clamp(1.6rem, 4vw, 3rem); }
.hero-inner h2 { font-size: clamp(1rem, 2.5vw, 1.8rem); }
.hero-inner p { font-size: 0.95rem; }
.hero-btn { font-size: 0.95rem; padding: 15px 35px; }
.drawer-link { font-size: 1.2rem; }
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.name-top {
    font-size: 1.1rem;
    font-weight: 900;
    display: block;
}

.services-bottom {
    font-size: 0.7rem;
    font-weight: 400;
    display: block;
    opacity: 0.9;
    background: none !important;
    -webkit-text-fill-color: #fff !important;
} 
.about-premium-section {
    padding: 120px 0;
    background: #ffffff;
    background-image: radial-gradient(#f0f0f0 1px, transparent 1px);
    background-size: 30px 30px;
    overflow: hidden;
}

.about-p-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.about-p-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.p-upper-title {
    color: #3498db;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    padding-right: 40px;
}

.p-upper-title::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background: #3498db;
}

.p-main-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #1a202c;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 25px;
}

.p-seo-paragraph {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 40px;
    text-align: justify;
}

.p-features-boxes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.p-feature-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #f0f4f8;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.p-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.1);
    border-color: #3498db;
}

.p-icon {
    width: 60px;
    height: 60px;
    background: #ebf8ff;
    color: #3498db;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: 0.4s;
}

.p-feature-box:hover .p-icon {
    background: #3498db;
    color: #fff;
    transform: rotateY(360deg);
}

.p-info h4 {
    color: #2d3748;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.p-info p {
    color: #718096;
    font-size: 0.9rem;
}

.location-glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #e2e8f0;
    padding: 50px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    position: relative;
}

.location-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.location-header i {
    color: #e53e3e;
    font-size: 2rem;
}

.location-header h3 {
    font-size: 1.5rem;
    color: #1a202c;
    font-weight: 800;
}

.location-desc {
    color: #718096;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.neighborhoods-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    background: #f7fafc;
    color: #4a5568;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #edf2f7;
    transition: 0.3s;
}

.tag-item:hover {
    background: #3498db;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.p-guarantee-card {
    margin-top: 40px;
    background: linear-gradient(135deg, #2d3748, #1a202c);
    padding: 25px;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.g-num {
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
    color: #3498db;
}

.g-text {
    font-size: 0.9rem;
    font-weight: 600;
}

.g-icon {
    font-size: 3rem;
    opacity: 0.2;
}

@media (max-width: 1024px) {
    .about-p-grid { grid-template-columns: 1fr; gap: 50px; }
    .location-glass-card { padding: 30px; }
}
.services-premium-area {
    padding: 100px 0;
    background: #d1e3f6;
    position: relative;
}

.s-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

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

.s-badge {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.s-title {
    font-size: 2.5rem;
    color: #1e293b;
    margin: 15px 0;
    font-weight: 800;
}

.s-desc {
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

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

.service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: #f1f5f9;
    color: #3498db;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: 0.3s;
}

.service-card:hover .card-icon {
    background: #3498db;
    color: #fff;
    transform: scale(1.1) rotate(10deg);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: #475569;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.card-list {
    list-style: none;
    margin-bottom: 30px;
}

.card-list li {
    position: relative;
    padding-right: 25px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}

.card-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    color: #22c55e;
}

.card-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #f1f5f9;
    color: #1e293b;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.service-card:hover .card-btn {
    background: #3498db;
    color: #fff;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .s-title { font-size: 2rem; }
}
.services-premium-area {
    background: #050b18;
}

.s-badge {
    background: linear-gradient(45deg, #1e293b, #334155);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.s-title {
    color: #ffffff;
}

.s-desc {
    color: #94a3b8;
}

.service-card {
    background: #0f172a;
    border: 1px solid #1e293b;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
    border-color: #38bdf8;
    background: #131c2f;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(56, 189, 248, 0.1);
}

.card-icon {
    background: rgba(56, 189, 248, 0.05);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.1);
}

.service-card:hover .card-icon {
    background: linear-gradient(135deg, #38bdf8, #818cf8);
    color: #ffffff;
}

.service-card h3 {
    color: #f8fafc;
}

.service-card p {
    color: #cbd5e1;
}

.card-list li {
    color: #94a3b8;
}

.card-list li::before {
    color: #38bdf8;
}

.card-btn {
    background: #1e293b;
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover .card-btn {
    background: linear-gradient(45deg, #38bdf8, #2563eb);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}
.portfolio-section {
    padding: 100px 0;
    background: #ffffff;
}

.p-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.p-badge {
    color: #3498db;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.p-title {
    font-size: 2.5rem;
    color: #1a202c;
    font-weight: 800;
    margin: 10px 0 20px;
}

.p-desc {
    color: #718096;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: #f7fafc;
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 152, 219, 0.15);
    opacity: 0;
    transition: 0.4s;
}

.gallery-item:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .p-title { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.blog-section { padding: 100px 0; background: #111827; }
.blog-container { max-width: 1300px; margin: 0 auto; padding: 0 20px; }
.blog-header { text-align: center; margin-bottom: 50px; }
.blog-badge { background: #3b82f6; color: #fff; padding: 6px 18px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3); }
.blog-title { font-size: 2.2rem; color: #f9fafb; margin: 15px 0; font-weight: 800; }
.blog-desc { color: #9ca3af; max-width: 600px; margin: 0 auto; margin-bottom: 20px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.blog-card { background: #1f2937; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.2); transition: 0.4s; border: 1px solid #374151; }
.blog-card:hover { transform: translateY(-10px); border-color: #3b82f6; box-shadow: 0 15px 40px rgba(0,0,0,0.4); }
.blog-img { height: 230px; overflow: hidden; border-bottom: 1px solid #374151; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.1); }
.blog-content { padding: 25px; }
.blog-content h3 { font-size: 1.3rem; margin-bottom: 15px; color: #f3f4f6; font-weight: 700; line-height: 1.4; }
.blog-content p { color: #9ca3af; font-size: 0.95rem; line-height: 1.7; margin-bottom: 25px; }
.read-more { color: #60a5fa; text-decoration: none; font-weight: 800; font-size: 0.9rem; border-bottom: 2px solid #3b82f6; padding-bottom: 5px; transition: 0.3s; }
.read-more:hover { color: #fff; border-color: #fff; }
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } .blog-title { font-size: 1.8rem; } }
.refined-why-section {
    padding: 120px 0;
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

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

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

.refined-tag {
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    display: inline-block;
    border: 1px solid rgba(56, 189, 248, 0.2);
    margin-bottom: 20px;
}

.refined-main-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
}

.refined-lead {
    color: #94a3b8;
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
}

.refined-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

.refined-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 45px;
    border-radius: 35px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.refined-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 20px rgba(56, 189, 248, 0.1);
}

.card-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    border: 1px solid rgba(56, 189, 248, 0.2);
    transition: 0.5s;
}

.refined-card:hover .icon-circle {
    background: #38bdf8;
    color: #ffffff;
    transform: rotateY(360deg);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
}

.card-head h3 {
    font-size: 1.4rem;
    color: #f8fafc;
    font-weight: 800;
}

.refined-card p {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.9;
    text-align: justify;
}

@media (max-width: 768px) {
    .refined-grid {
        grid-template-columns: 1fr;
    }
    .refined-main-title { font-size: 1.9rem; }
    .refined-card { padding: 35px; }
    .refined-why-section { padding: 80px 0; }
}
.contact-advanced-section {
    padding: 120px 0;
    position: relative;
    background: url('images/blog1.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
}

.contact-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

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

.c-badge {
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
}

.c-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #ffffff;
    margin-top: 20px;
    font-weight: 900;
}

.c-desc {
    color: #94a3b8;
    max-width: 700px;
    margin: 15px auto;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.c-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 40px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.call-card:hover {
    background: rgba(56, 189, 248, 0.15);
    border-color: #38bdf8;
    transform: translateY(-10px);
}

.whatsapp-card:hover {
    background: rgba(34, 197, 94, 0.15);
    border-color: #22c55e;
    transform: translateY(-10px);
}

.c-icon {
    font-size: 2.5rem;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.call-card .c-icon { color: #38bdf8; background: rgba(56, 189, 248, 0.1); }
.whatsapp-card .c-icon { color: #22c55e; background: rgba(34, 197, 94, 0.1); }

.c-info h3 { color: #ffffff; font-size: 1.5rem; margin-bottom: 5px; }
.c-info p { color: #94a3b8; font-size: 0.9rem; }
.c-info .number { color: #ffffff; font-size: 1.2rem; font-weight: 800; display: block; margin-top: 10px; letter-spacing: 1px; }

.location-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 35px;
    padding: 50px;
}

.loc-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.loc-head i { color: #ef4444; font-size: 1.8rem; }
.loc-head h3 { color: #ffffff; font-size: 1.6rem; font-weight: 800; }
.loc-address { color: #cbd5e1; margin-bottom: 30px; font-size: 1.1rem; }

.neighborhoods-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.n-tag {
    background: rgba(255, 255, 255, 0.05);
    color: #f8fafc;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.n-tag:hover {
    background: #38bdf8;
    color: #0f172a;
    font-weight: 700;
    transform: scale(1.1);
}

@media (max-width: 850px) {
    .contact-cards { grid-template-columns: 1fr; }
    .location-box { padding: 30px; }
    .c-card { padding: 30px; }
}
.site-footer {
    background: #0f172a;
    color: #f8fafc;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.f-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

.f-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.f-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #38bdf8;
    margin-bottom: 20px;
}

.f-description {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.f-socials {
    display: flex;
    gap: 15px;
}

.f-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: 0.3s;
    text-decoration: none;
}

.f-socials a:hover {
    background: #38bdf8;
    transform: translateY(-5px);
}

.f-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

.f-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: #38bdf8;
}

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

.f-links li {
    margin-bottom: 12px;
}

.f-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.f-links a:hover {
    color: #38bdf8;
    padding-right: 8px;
}

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

.f-contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #94a3b8;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.f-contact-info i {
    color: #38bdf8;
}

.f-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

.gmt-credit {
    margin-top: 10px;
    font-weight: 600;
}

.gmt-credit a {
    color: #38bdf8;
    text-decoration: none;
    border-bottom: 1px solid #38bdf8;
}

.floating-actions {
    position: fixed;
    bottom: 30px;
    left: 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.5rem;
    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;
}

.float-call { background: linear-gradient(45deg, #3b82f6, #2563eb); }
.float-whatsapp { background: linear-gradient(45deg, #22c55e, #16a34a); }

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

@media (max-width: 992px) {
    .f-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .f-grid { grid-template-columns: 1fr; }
    .floating-actions { left: 20px; bottom: 20px; }
    .float-btn { width: 50px; height: 50px; font-size: 1.2rem; }
}
.mobile-toggler span {
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
    margin: 1px 0;
    transition: 0.4s;
}

.side-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%; 
    height: 100vh;
    background: #0f172a;
    z-index: 3000;
    transition: 0.5s cubic-bezier(0.85, 0, 0.15, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 2px solid var(--accent-blue);
}

.side-drawer.open {
    right: 0;
}
.glass-navbar.scrolled {
    width: 100% !important;
    max-width: 100% !important;
    top: 0 !important;
    left: 0 !important;
    transform: translateX(0) !important; 
    border-radius: 0 !important;
    background: #050b18 !important; 
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-link {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.nav-link.active {
    background: #3498db;
    color: #fff;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .gallery-item {
        aspect-ratio: auto;
        height: 300px;
    }
}