:root {
    --light: #FFE185;
    --pink: #FFADEE;
    --hot: #F62477;
    --deep: #92003A;
    --w: #ffffff;
}

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

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

#splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.s-loader { text-align: center; }
.s-loader img { width: 80px; animation: bounce 1s infinite alternate; }
.s-loader h2 { color: var(--deep); margin-top: 15px; font-weight: 900; font-size: 1.5rem; }

@keyframes bounce { from { transform: translateY(0); } to { transform: translateY(-20px); } }

header {
    position: fixed;
    top: 25px;
    width: 100%;
    padding: 0 4%;
    z-index: 1000;
}

.slim-nav {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    box-shadow: 0 10px 30px rgba(146, 0, 58, 0.05);
}

.brand { display: flex; align-items: center; gap: 10px; padding-right: 15px; }
.brand img { width: 38px; height: 38px; border-radius: 50%; }
.brand-txt h1 { font-size: 1rem; color: var(--deep); font-weight: 900; line-height: 1; }
.brand-txt span { font-size: 0.65rem; color: var(--hot); font-weight: 700; }

.nav-m { display: flex; list-style: none; gap: 4px; }
.m-link {
    text-decoration: none;
    color: var(--deep);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
}

.m-link.active {
    background: var(--deep);
    color: var(--light) !important;
    box-shadow: 0 5px 15px rgba(146, 0, 58, 0.2);
}

.m-link:not(.active):hover { background: var(--pink); color: var(--deep); }

.call-btn {
    background: linear-gradient(45deg, var(--hot), var(--deep));
    color: var(--w);
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 8px 20px rgba(246, 36, 119, 0.2);
}

.h-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    background: var(--deep);
    padding: 10px;
    border-radius: 50%;
}

.h-menu i { width: 18px; height: 2px; background: var(--light); border-radius: 2px; }

.art-side {
    position: fixed;
    top: 0;
    right: -100%;
    width: 240px;
    height: 100vh;
    background: var(--w);
    z-index: 5000;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
}

.art-side.active { right: 0; }
#close-s { font-size: 3rem; color: var(--hot); cursor: pointer; align-self: flex-end; }
.side-links { margin-top: 30px; display: flex; flex-direction: column; gap: 15px; }
.s-link {
    text-decoration: none;
    color: var(--deep);
    font-size: 1.1rem;
    font-weight: 800;
    padding: 12px 20px;
    border-radius: 15px;
    transition: 0.3s;
}

.s-link.active { background: var(--light); color: var(--deep); border-right: 5px solid var(--hot); }

.hero {
    height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, var(--light) 0%, var(--pink) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.v-bg .v-shape {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--deep);
    opacity: 0.15;
    animation: zoomInOut 8s infinite alternate ease-in-out;
}

.v-shape i { font-size: 4rem; }
.v-shape span { font-weight: 900; font-size: 0.9rem; margin-top: 5px; }

.s1 { top: 15%; left: 10%; }
.s2 { top: 65%; left: 12%; animation-delay: 1s; }
.s3 { top: 20%; right: 10%; animation-delay: 2s; }
.s4 { bottom: 15%; right: 15%; animation-delay: 3s; }
.s5 { top: 45%; right: 35%; animation-delay: 4s; }
.s6 { bottom: 25%; left: 45%; animation-delay: 5s; }

@keyframes zoomInOut {
    0% { transform: scale(1) rotate(0deg); opacity: 0.1; }
    100% { transform: scale(1.3) rotate(15deg); opacity: 0.3; }
}

.hero-box {
    text-align: center;
    z-index: 10;
    padding: 0 20px;
    animation: h-entry 1.5s ease-out;
}

@keyframes h-entry { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.h-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--deep);
    line-height: 1.1;
    margin-bottom: 25px;
}
.h-desc {
    font-size: 1.25rem;
    color: #444;
    max-width: 850px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.h-btns { display: flex; justify-content: center; gap: 20px; }
.b-main {
    background: var(--deep);
    color: var(--w);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 15px 35px rgba(146, 0, 58, 0.2);
    transition: 0.4s;
}

.b-sub {
    background: var(--w);
    color: var(--deep);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.1rem;
    border: 2px solid var(--deep);
    transition: 0.4s;
}

.h-btns a:hover { transform: translateY(-8px) scale(1.05); }

.sec { height: 100vh; width: 100%; }

@media (max-width: 992px) {
    .nav-m, .call-btn { display: none; }
    .h-menu { display: flex; }
    .h-title { font-size: 2rem; }
    .h-desc { font-size: 1rem; }
    .b-main, .b-sub { padding: 12px 25px; font-size: 0.9rem; }
    .slim-nav { border-radius: 25px; }
    .v-shape i { font-size: 2.5rem; }
}
.brand img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: contain;
}
.about-us-art {
    padding: 100px 5%;
    background: var(--w);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-visual-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-img-wrapper {
    width: 350px;
    height: 450px;
    background: linear-gradient(135deg, var(--light), var(--pink));
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 30px 60px rgba(146, 0, 58, 0.1);
    animation: morphing 10s infinite alternate;
    z-index: 2;
}
.main-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
    display: block;
}

@keyframes morphing {
    0% { border-radius: 30px 60px 30px 60px; }
    100% { border-radius: 60px 30px 60px 30px; }
}

.experience-card {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--deep);
    color: var(--light);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    z-index: 5;
    box-shadow: 0 15px 35px rgba(146, 0, 58, 0.3);
    animation: floatCard 4s infinite alternate ease-in-out;
}

@keyframes floatCard {
    from { transform: translateY(0) rotate(0deg); }
    to { transform: translateY(-20px) rotate(3deg); }
}

.experience-card .num { font-size: 2.5rem; font-weight: 900; display: block; line-height: 1; }
.experience-card .txt { font-size: 0.9rem; font-weight: 700; }

.glass-shape {
    position: absolute;
    background: rgba(255, 173, 238, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    z-index: 1;
}

.gs1 { width: 150px; height: 150px; top: -40px; left: -20px; }
.gs2 { width: 100px; height: 100px; bottom: 40px; right: 50px; }

.pre-title {
    color: var(--hot);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.about-text-box .main-title {
    font-size: 2.8rem;
    color: var(--deep);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 25px;
}

.about-text-box .main-title span { color: var(--hot); }

.about-desc {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.feat-item {
    display: flex;
    gap: 15px;
    background: rgba(255, 225, 133, 0.1);
    padding: 15px;
    border-radius: 15px;
    border-right: 4px solid var(--light);
    transition: 0.3s;
}

.feat-item:hover {
    background: var(--light);
    transform: translateX(-10px);
}

.feat-icon { color: var(--deep); font-size: 1.5rem; }
.feat-txt h4 { color: var(--deep); font-weight: 900; font-size: 1rem; }
.feat-txt p { font-size: 0.85rem; color: #666; }

.additional-seo-text {
    font-size: 0.95rem;
    color: #777;
    border-right: 3px solid var(--pink);
    padding-right: 15px;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.stat-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--deep);
    color: var(--w);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.stat-card i { color: var(--light); }

@media (max-width: 992px) {
    .about-container { grid-template-columns: 1fr; gap: 50px; }
    .about-text-box { text-align: center; }
    .about-text-box .main-title { font-size: 1.8rem; }
    .features-grid { grid-template-columns: 1fr; }
    .main-img-wrapper { width: 280px; height: 350px; margin: 0 auto; }
    .about-stats { justify-content: center; flex-wrap: wrap; }
    .feat-item { text-align: right; }
    .additional-seo-text { text-align: justify; }
}
.services-art-section {
    padding: 100px 5%;
    background: linear-gradient(180deg,#edbbd9 0%, #f4f1cc 50%, #f6f4f4 100%);
    position: relative;
}

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

.mini-title {
    color: var(--hot);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 3rem;
    color: var(--deep);
    font-weight: 900;
    margin: 15px 0;
}

.section-title span { color: var(--hot); }

.section-desc {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--w);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(146, 0, 58, 0.05);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 173, 238, 0.2);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(146, 0, 58, 0.12);
}

.s-card-img {
    height: 280px;
    position: relative;
    overflow: hidden;
}

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

.service-card:hover .s-card-img img {
    transform: scale(1.1) rotate(2deg);
}

.s-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--deep), transparent);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s;
}

.s-overlay i {
    color: var(--light);
    font-size: 4rem;
    transform: translateY(20px);
    transition: 0.4s;
}

.service-card:hover .s-overlay { opacity: 0.7; }
.service-card:hover .s-overlay i { transform: translateY(0); }

.s-card-content {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.s-card-content h3 {
    color: var(--deep);
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.s-card-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.s-features {
    list-style: none;
    margin-bottom: 25px;
}

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

.s-features li i { color: var(--hot); font-size: 1rem; }

.s-btn {
    margin-top: auto;
    text-decoration: none;
    background: var(--light);
    color: var(--deep);
    text-align: center;
    padding: 15px;
    border-radius: 15px;
    font-weight: 800;
    transition: 0.3s;
    border: 2px solid transparent;
}

.s-btn:hover {
    background: var(--deep);
    color: var(--light);
    box-shadow: 0 10px 20px rgba(146, 0, 58, 0.2);
}

@media (max-width: 992px) {
    .services-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 2rem; }
    .s-card-img { height: 220px; }
}
.portfolio-section {
    padding: 100px 5%;
    background: #fff;
}

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

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 50px;
    border: 2px solid var(--deep);
    background: transparent;
    color: var(--deep);
    font-weight: 800;
    cursor: pointer;
    transition: 0.4s;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--deep);
    color: var(--light);
}

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

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    background: #f9f9f9;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.5s;
}

.portfolio-item img, .portfolio-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.portfolio-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(146, 0, 58, 0.15);
}

@media (max-width: 768px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-item { height: 250px; }
    .filter-tabs { flex-wrap: wrap; }
}
.blog-section {
    padding: 100px 5%;
    background: #fffafb;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: var(--w);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(146, 0, 58, 0.05);
    transition: 0.4s;
    border: 1px solid rgba(255, 173, 238, 0.2);
}

.blog-card:hover { transform: translateY(-10px); }

.blog-img { position: relative; height: 230px; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }

.blog-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--hot);
    color: var(--w);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.blog-info { padding: 25px; }
.blog-date { color: #888; font-size: 0.85rem; margin-bottom: 10px; }
.blog-info h3 { color: var(--deep); font-size: 1.3rem; margin-bottom: 15px; line-height: 1.4; }
.blog-info p { color: #666; font-size: 0.95rem; margin-bottom: 20px; line-height: 1.6; }

.read-more {
    text-decoration: none;
    color: var(--hot);
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.read-more:hover { gap: 15px; color: var(--deep); }

@media (max-width: 992px) {
    .blog-grid { grid-template-columns: 1fr; }
}
.blog-section {
    padding: 100px 5%;
    background: #fffdf0;
}

.blog-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.mini-title, .section-title, .section-desc {
    text-align: center;
}
.reviews-section {
    padding: 100px 5%;
    background: #fff9f5;
    position: relative;
}

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

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: var(--w);
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(146, 0, 58, 0.03);
    border: 1px solid rgba(255, 173, 238, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: "\f10e";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: var(--pink);
    opacity: 0.2;
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(146, 0, 58, 0.08);
    border-color: var(--pink);
}

.stars {
    margin-bottom: 20px;
    color: var(--light);
    font-size: 0.9rem;
}

.review-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.client-name {
    color: var(--deep);
    font-weight: 900;
    font-size: 1.1rem;
    margin: 0;
    padding-top: 15px;
    border-top: 1px dashed var(--pink);
}

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

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .review-card {
        padding: 30px 20px;
    }
}
.why-us-creative {
    padding: 120px 5%;
    background: linear-gradient(145deg, #1a000a 0%, #3d0018 100%);
    position: relative;
    overflow: hidden;
}

.why-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(146, 0, 58, 0.3) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

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

.why-text {
    text-align: center;
    margin-bottom: 80px;
}

.mini-title-gold {
    color: var(--light);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title-white {
    font-size: 3rem;
    color: var(--w);
    font-weight: 900;
}

.section-title-white span {
    color: var(--pink);
}

.section-desc-light {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 20px auto 0;
}

.why-grid-offset {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card-art {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 40px 0 40px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    position: relative;
}

.why-grid-offset div:nth-child(even) {
    margin-top: 50px;
}

.why-card-art:hover {
    background: rgba(146, 0, 58, 0.15);
    border-color: var(--pink);
    transform: translateY(-10px);
    border-radius: 0 40px 0 40px;
}

.card-num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--light);
    margin-bottom: 25px;
}

.why-card-art h3 {
    color: var(--w);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.why-card-art p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 1200px) {
    .why-grid-offset {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid-offset div:nth-child(even) {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .why-grid-offset {
        grid-template-columns: 1fr;
    }
    .section-title-white {
        font-size: 2rem;
    }
}
.contact-us-section {
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
    background: #000;
}

.contact-bg-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/serv4.png');
    background-size: cover;
    background-position: center;
    filter: blur(15px) brightness(0.4);
    transform: scale(1.1);
    z-index: 1;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.contact-header .section-title {
    color: var(--w);
}

.contact-header .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.c-card {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 35px;
    border-radius: 25px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.c-card.call {
    background: linear-gradient(135deg, rgba(146, 0, 58, 0.9), rgba(246, 36, 119, 0.9));
    color: var(--w);
}

.c-card.whatsapp {
    background: rgba(37, 211, 102, 0.9);
    color: var(--w);
}

.c-icon {
    font-size: 2.5rem;
}

.c-info h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 900;
}

.c-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.address-info-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.loc-details {
    display: flex;
    align-items: center;
    gap: 15px;
}

.loc-icon {
    font-size: 2rem;
    color: var(--light);
}

.address-info-box p {
    margin: 0;
    color: var(--w);
    font-size: 1.1rem;
    line-height: 1.6;
}

.open-maps-btn {
    text-decoration: none;
    background: var(--light);
    color: var(--deep);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    white-space: nowrap;
}

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

.map-wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    border: 8px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
    .address-info-box {
        flex-direction: column;
        text-align: center;
    }
    .contact-cards {
        grid-template-columns: 1fr;
    }
}
.site-footer {
    background: #1a000a;
    color: #fff;
    padding: 80px 5% 20px;
    position: relative;
    border-top: 5px solid var(--light);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-col h4 {
    color: var(--light);
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-logo {
    color: var(--light);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-desc {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

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

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

.social-links a:hover {
    background: var(--pink);
    transform: translateY(-5px);
}

.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;
    display: block;
}

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

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

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    align-items: center;
}

.footer-contact i {
    color: var(--pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 50px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.gmt-credit {
    text-align: center;
    margin-top: 10px;
}

.gmt-credit a {
    color: var(--light);
    text-decoration: none;
    font-weight: 900;
}

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

.float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-whatsapp { background: #25d366; }
.float-call { background: var(--pink); }

.float-btn i { font-size: 1.5rem; }

.float-btn:hover {
    transform: scale(1.1) translateX(10px);
}

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

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .floating-actions {
        left: 15px;
        bottom: 15px;
    }
    .float-btn span {
        display: none;
    }
    .float-btn {
        padding: 15px;
        border-radius: 50%;
    }
}