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

:root {
    --color1: #F8B2B2;
    --color2: #8B639B;
    --color3: #403D88;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.75);
    --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;
    outline: none;
}

body {
    background: linear-gradient(135deg, #fefafa 0%, #f0f2f3 100%);
    color: var(--color3);
    overflow-x: hidden;
    width: 100%;
}

.bg-scene {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.geo-shape {
    position: absolute;
    border: 2px solid var(--color1);
    opacity: 0.5;
    animation: floatShape 18s infinite linear;
}

.circle { width: 120px; height: 120px; border-radius: 50%; top: 10%; left: 5%; background: var(--color1); }
.square { width: 90px; height: 90px; top: 65%; right: 10%; border-color: var(--color2); transform: rotate(45deg); }
.triangle { width: 0; height: 0; border-left: 55px solid transparent; border-right: 55px solid transparent; border-bottom: 90px solid var(--color3); top: 25%; right: 20%; background: none; border-top: none; }
.ring { width: 160px; height: 160px; border-radius: 50%; border: 12px solid var(--color2); bottom: 8%; left: 15%; }

@keyframes floatShape {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

.main-glass-nav {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: 15px;
    padding: 8px 20px;
    z-index: 1001;
    box-shadow: 0 8px 25px rgba(64, 61, 136, 0.08);
    transition: var(--transition);
}

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

.brand-identity { display: flex; align-items: center; gap: 10px; }

.logo-icon {
    width: 38px; height: 38px;
    background: var(--color3);
    color: white;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px; font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(64, 61, 136, 0.2);
}

.brand-text { display: flex; flex-direction: column; }
.main-name { font-weight: 900; font-size: 1.2rem; color: var(--color3); line-height: 1; }
.sub-name { font-size: 0.65rem; color: var(--color2); font-weight: 800; letter-spacing: 0.5px; }

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

.nav-item {
    text-decoration: none; color: var(--color3);
    padding: 6px 14px; border-radius: 10px;
    font-size: 0.88rem; font-weight: 700; transition: 0.3s ease;
}

.nav-item.active { background: var(--color3); color: white; box-shadow: 0 4px 12px rgba(64, 61, 136, 0.2); }

.cta-phone {
    background: var(--color2); color: white;
    padding: 7px 18px; border-radius: 10px;
    text-decoration: none; font-weight: 700; font-size: 0.9rem;
    display: flex; align-items: center; gap: 8px; transition: 0.3s;
}

.hero-master {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.glass-hero-box {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(25px);
    border: 1px solid white;
    padding: 50px 40px;
    border-radius: 35px;
    text-align: center;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
    animation: heroReveal 1.2s ease-out;
    margin-top: 40px;
}

@keyframes heroReveal {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.badge {
    background: var(--color1);
    color: var(--color3);
    display: inline-block;
    padding: 6px 22px;
    border-radius: 50px;
    font-weight: 900;
    margin-bottom: 20px;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(248, 178, 178, 0.3);
}

.main-title {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--color3);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-seo-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #4b5563;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.magic-btn {
    padding: 14px 40px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05rem;
    transition: var(--transition);
}

.magic-btn.primary { background: var(--color3); color: white; box-shadow: 0 10px 20px rgba(64, 61, 136, 0.2); }
.magic-btn.secondary { background: var(--color1); color: var(--color3); }

.magic-btn:hover { transform: translateY(-6px); }

.menu-trigger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.menu-trigger span { width: 26px; height: 3px; background: var(--color3); border-radius: 4px; transition: 0.3s; }

.mobile-side-menu {
    position: fixed;
    top: -120%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 30px 20px;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 1px solid var(--color1);
}

.mobile-side-menu.open { top: 85px; }

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

.m-link {
    text-decoration: none; color: var(--color3);
    font-weight: 800; text-align: center;
    padding: 14px; border-radius: 12px;
    font-size: 1.1rem; transition: 0.3s;
}

.m-link.active { background: var(--color1); color: var(--color3); }

@media (max-width: 992px) {
    .nav-links-wrapper, .hide-mobile { display: none; }
    .menu-trigger { display: flex; }
    .main-title { font-size: 2.5rem; }
    .hero-seo-text { font-size: 1.05rem; }
    .hero-controls { flex-direction: column; width: 100%; }
    .magic-btn { width: 100%; text-align: center; }
    .glass-hero-box { padding: 35px 20px; margin: 0 10px; }
    .main-glass-nav { width: 95%; top: 10px; }
}
.hero-master {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px; 
}
.glass-hero-box {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(25px);
    border: 1px solid white;
    padding: 50px 40px;
    border-radius: 35px;
    text-align: center;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
    animation: heroReveal 1.2s ease-out;
    margin: 0 auto; 
}
@media (max-width: 992px) {
    .glass-hero-box {
        padding: 35px 20px;
        margin: 0 auto !important; 
        width: 100%; 
    }
    .hero-master {
        padding: 0 20px; 
    }
}
.about-elite-section {
    position: relative;
    padding: 120px 0;
    background-color: #fcfcfc;
    overflow: hidden;
}

.about-bg-elements .glow-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    opacity: 0.15;
}

.g1 { top: -10%; left: -10%; background: var(--color1); }
.g2 { bottom: -10%; right: -10%; background: var(--color2); }

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.about-visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 20px;
}

.grid-card {
    background: white;
    border-radius: 30px;
    padding: 30px;
    border: 1px solid #eee;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.grid-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 45px rgba(64, 61, 136, 0.1);
    border-color: var(--color1);
}

.experience-card {
    grid-row: span 2;
    background: var(--color3);
    color: white;
    text-align: center;
    justify-content: center;
    border: none;
}

.experience-card .big-num {
    font-size: 5rem;
    font-weight: 900;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--color1);
}

.experience-card p { font-size: 1.2rem; font-weight: 700; opacity: 0.9; }

.grid-card i {
    font-size: 2rem;
    color: var(--color2);
    margin-bottom: 15px;
}

.grid-card h3 {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--color3);
    margin-bottom: 10px;
}

.grid-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    font-weight: 600;
}

.about-text-content { text-align: right; }

.top-label {
    background: var(--color1);
    color: var(--color3);
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
}

.section-heading {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color3);
    line-height: 1.2;
    margin-bottom: 25px;
}

.main-para {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 40px;
}

.achievements-bar {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    background: var(--glass);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid white;
}

.ach-item h4 { font-size: 2.2rem; font-weight: 900; color: var(--color2); line-height: 1; }
.ach-item span { font-weight: 700; color: #777; font-size: 0.95rem; }

.tags-cloud { display: flex; gap: 12px; flex-wrap: wrap; }
.tag-pill {
    background: white;
    border: 1.5px solid var(--color1);
    color: var(--color3);
    padding: 8px 18px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.85rem;
    transition: 0.3s;
}

.tag-pill:hover { background: var(--color1); color: var(--color3); }

@media (max-width: 992px) {
    .about-container { grid-template-columns: 1fr; gap: 50px; }
    .about-visual-grid { grid-template-rows: auto; }
    .experience-card { grid-row: auto; grid-column: span 2; padding: 40px; }
    .grid-card { grid-column: span 2; }
    .section-heading { font-size: 2.2rem; }
    .main-para { font-size: 1.05rem; }
}
.services-final-section {
    padding: 100px 0;
    /* استخدام اللون البنفسجي في تدرج ناعم للخلفية */
    background: linear-gradient(135deg, #fdfbfb 0%, #f7f1f7 40%, #8B639B 100%);
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.badge {
    background: #403D88;
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
}

.title {
    font-size: 3rem;
    font-weight: 900;
    color: #403D88;
    margin-bottom: 20px;
}

.desc {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    max-width: 950px;
    margin: 0 auto;
    font-weight: 600;
}

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

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

.s-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(139, 99, 155, 0.2);
}

.s-img {
    height: 220px;
    overflow: hidden;
}

.s-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.s-card:hover .s-img img {
    transform: scale(1.1);
}

.s-content {
    padding: 35px 25px;
    text-align: center;
    position: relative;
}

.s-icon {
    width: 65px;
    height: 65px;
    background: #8B639B;
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: -65px auto 20px;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.s-content h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #403D88;
    margin-bottom: 15px;
}

.s-content p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    font-weight: 600;
}

.emergency-banner {
    margin-top: 80px;
    background: #403D88;
    padding: 40px 50px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    border: 1px solid #8B639B;
}

.e-info h3 { font-size: 1.8rem; font-weight: 900; margin-bottom: 5px; }
.e-info p { font-size: 1.1rem; opacity: 0.9; font-weight: 600; }

.e-btn {
    background: #F8B2B2;
    color: #403D88;
    padding: 18px 40px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    transition: 0.3s;
}

.e-btn:hover { background: #fff; transform: scale(1.05); }

@media (max-width: 992px) {
    .services-grid { grid-template-columns: 1fr; }
    .emergency-banner { flex-direction: column; text-align: center; gap: 30px; padding: 30px; }
    .title { font-size: 2.2rem; }
    .desc { font-size: 1.1rem; }
}
.modern-blog-section {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

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

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

.blog-badge {
    background: #F8B2B2;
    color: #403D88;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(248, 178, 178, 0.4);
}

.blog-main-title {
    font-size: 3rem;
    font-weight: 900;
    color: #403D88;
    margin-bottom: 20px;
}

.blog-desc-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 600;
}

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

.article-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(64, 61, 136, 0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
}

.article-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(64, 61, 136, 0.15);
}

.article-img {
    height: 260px;
    position: relative;
    overflow: hidden;
}

.article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.article-card:hover .article-img img {
    transform: scale(1.1);
}

.img-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #8B639B;
    color: #fff;
    padding: 6px 15px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 800;
}

.article-body {
    padding: 35px 25px;
}

.post-date {
    color: #8B639B;
    font-weight: 800;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 12px;
}

.article-body h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #403D88;
    margin-bottom: 15px;
    line-height: 1.4;
    text-decoration: none !important;
}

.article-body p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 600;
}

.read-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #F8B2B2;
    color: #403D88;
    padding: 12px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 900;
    transition: 0.3s;
}

.read-btn:hover {
    background: #403D88;
    color: #fff;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .blog-main-title { font-size: 2.2rem; }
    .blog-desc-text { font-size: 1.1rem; }
    .blog-cards-grid { grid-template-columns: 1fr; }
}
.testimonials-elite-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #F8B2B2 0%, #eb9d9d 50%, #8B639B 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-bg-overlay {
    position: absolute;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
    z-index: 1;
}

.testi-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 5;
}

.testi-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.testi-badge {
    background: #403D88;
    color: white;
    padding: 8px 30px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.95rem;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.testi-main-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.testi-main-title span {
    color: #403D88;
}

.testi-lead-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 2;
    font-weight: 600;
}

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

.testi-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 45px 35px;
    border-radius: 35px;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testi-item:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.stars {
    margin-bottom: 20px;
    color: #ffc107;
    font-size: 0.9rem;
}

.testi-comment {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #fff;
    font-weight: 700;
    margin-bottom: 30px;
    transition: 0.4s;
}

.testi-item:hover .testi-comment {
    color: #333;
}

.testi-author {
    font-size: 1.3rem;
    font-weight: 900;
    color: #403D88;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.4s;
}

.testi-item:hover .testi-author {
    border-top-color: #F8B2B2;
}

@media (max-width: 992px) {
    .testi-main-title { font-size: 2.2rem; }
    .testi-lead-text { font-size: 1.1rem; }
    .testi-grid-layout { grid-template-columns: 1fr; }
}
.luxury-why-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #403D88 0%, #8B639B 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.light-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(248, 178, 178, 0.15) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    filter: blur(100px);
}

.content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 10;
}

.why-intro-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.mini-label {
    background: #F8B2B2;
    color: #403D88;
    padding: 6px 25px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
}

.main-why-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.main-why-title span {
    color: #F8B2B2;
}

.main-why-desc {
    font-size: 1.25rem;
    opacity: 0.85;
    line-height: 1.8;
}

.bento-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 25px;
}

.bento-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(248, 178, 178, 0.2);
    border-radius: 40px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.5s ease;
}

.bento-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #F8B2B2;
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.featured { grid-row: span 2; background: rgba(248, 178, 178, 0.1); }
.wide { grid-column: span 2; flex-direction: row; align-items: center; gap: 30px; }

.bento-icon {
    width: 60px;
    height: 60px;
    background: #F8B2B2;
    color: #403D88;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.wide .bento-icon { margin-bottom: 0; min-width: 60px; }

.bento-item h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #F8B2B2;
}

.bento-item p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
    font-weight: 600;
}
@media (max-width: 992px) {
    .bento-grid-container { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .featured, .wide { grid-row: auto; grid-column: auto; flex-direction: column; align-items: flex-start; }
    .main-why-title { font-size: 2.5rem; }
}
.artistic-contact {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: #403D88;
}
.contact-blur-bg {
    position: absolute;
    inset: 0;
    background: url('images/serv1.png') center/cover;
    filter: blur(12px) brightness(0.6);
    transform: scale(1.1);
    z-index: 1;
}

.contact-wrapper {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 10;
}

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

.art-badge {
    background: var(--color1);
    color: var(--primary);
    padding: 8px 30px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(248, 178, 178, 0.3);
}

.art-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
}

.art-title span { color: var(--color1); }

.art-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-grid-art {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.art-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    padding: 50px;
    text-decoration: none;
    transition: var(--transition);
    text-align: center;
}

.art-card:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color1);
    transform: translateY(-15px);
}

.art-icon {
    width: 85px;
    height: 85px;
    background: #fff;
    color: var(--primary);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.whatsapp-side .art-icon { color: #25d366; }

.art-card h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
}

.art-card p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
}

.digit-num {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color1);
    display: block;
}

.map-art-box {
    background: #fff;
    border-radius: 50px;
    padding: 50px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.3);
}

.map-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.address-detail {
    display: flex;
    align-items: center;
    gap: 20px;
}

.address-detail i { font-size: 2.5rem; color: var(--accent); }
.address-detail h4 { font-size: 1.6rem; color: var(--primary); font-weight: 900; }
.address-detail p { color: #666; font-weight: 700; font-size: 1.1rem; }

.google-maps-btn {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}

.google-maps-btn:hover { background: var(--accent); transform: scale(1.05); }

.map-visual {
    height: 500px;
    border-radius: 35px;
    overflow: hidden;
    border: 8px solid var(--color1);
}

.map-visual iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 992px) {
    .contact-grid-art { grid-template-columns: 1fr; }
    .map-info-header { flex-direction: column; gap: 30px; text-align: center; }
    .address-detail { flex-direction: column; }
    .art-title { font-size: 2.2rem; }
    .map-art-box { padding: 30px 20px; border-radius: 30px; }
    .map-visual { height: 350px; }
}
.google-maps-btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #403D88 0%, #8B639B 100%);
    color: #fff;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #F8B2B2;
    box-shadow: 0 10px 30px rgba(64, 61, 136, 0.3);
    cursor: pointer;
}

.google-maps-btn-premium:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 45px rgba(248, 178, 178, 0.4);
    background: linear-gradient(135deg, #8B639B 0%, #403D88 100%);
}

.btn-icon {
    font-size: 1.5rem;
    color: #F8B2B2;
    animation: iconBounce 2s infinite;
}

.btn-text {
    letter-spacing: 0.5px;
    position: relative;
}
@keyframes iconBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
}
.google-maps-btn-premium::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(25deg);
    transition: 0.8s;
}

.google-maps-btn-premium:hover::after {
    left: 150%;
}
.main-footer {
    background-color: #2a2958;
    color: #ffffff;
    padding: 80px 0 20px;
    position: relative;
    border-top: 5px solid #F8B2B2;
}

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

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

.footer-col h3 {
    color: #F8B2B2;
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background-color: #8B639B;
}

.footer-logo {
    font-size: 2.2rem;
    font-weight: 900;
    color: #F8B2B2;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links a:hover {
    background: #F8B2B2;
    color: #403D88;
    transform: translateY(-5px);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #F8B2B2;
    padding-right: 8px;
}

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

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact-info i {
    color: #F8B2B2;
    font-size: 1.2rem;
}

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

.copyrights {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.developer-credit {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.developer-credit a {
    color: #F8B2B2;
    text-decoration: none;
    font-weight: 900;
    border-bottom: 1px dashed #F8B2B2;
}

.developer-credit a:hover {
    color: #ffffff;
}

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

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col h3::after {
        right: 50%;
        transform: translateX(50%);
    }
    .social-links {
        justify-content: center;
    }
    .footer-contact-info li {
        justify-content: center;
    }
}
.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;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.float-btn.whatsapp {
    background: #25d366;
    animation: pulse-whatsapp 2s infinite;
}

.float-btn.phone {
    background: #403D88;
    border: 2px solid #F8B2B2;
}

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

.tooltip-text {
    position: absolute;
    right: 75px;
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 800;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tooltip-text::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

.float-btn:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
    .float-btn {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    .tooltip-text {
        display: none; 
    }
}
.portfolio-section {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.portfolio-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.p-badge {
    background: #F8B2B2;
    color: #403D88;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 900;
    display: inline-block;
    margin-bottom: 15px;
}

.p-title {
    font-size: 3rem;
    font-weight: 900;
    color: #403D88;
    margin-bottom: 20px;
}

.p-title span { color: #8B639B; }

.p-desc {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 600;
}

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

.p-item {
    height: 300px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 3px solid #fff;
    transition: 0.4s;
    background: #eee;
}

.p-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.p-item:hover {
    transform: translateY(-10px);
    border-color: #F8B2B2;
    box-shadow: 0 20px 40px rgba(139, 99, 155, 0.2);
}

.p-item:hover img {
    transform: scale(1.1);
}

.video-item {
    grid-column: span 2;
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .p-title { font-size: 2.2rem; }
    .video-item { grid-column: span 1; }
    .portfolio-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .p-item { height: 250px; }
}
.portfolio-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7d7b0 0%, #fcf3f3 50%, #fbe1fb 100%);
    position: relative;
}
@media (max-width: 768px) {
    .main-title {
        font-size: 1.8rem !important;
    }
    .hero-seo-text {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
}