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

:root {
    --gold: #d5ae65;
    --bronze: #926d3a;
    --beige: #cbc2bb;
    --deep: #262721;
    --white: #ffffff;
    --soft: #fdfbf9;
    --glass: rgba(255, 255, 255, 0.4);
}

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

body {
    background-color: var(--soft);
    color: var(--deep);
    overflow-x: hidden;
    line-height: 1.6;
}

#splash {
    position: fixed;
    inset: 0;
    background: var(--deep);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 1s cubic-bezier(1, 0, 0, 1);
}

.splash-box img {
    width: 180px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 15px var(--gold));
}

.progress-bar {
    width: 200px;
    height: 4px;
    background: rgba(213, 174, 101, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--gold);
    animation: load 2s ease-in-out forwards;
}

@keyframes load { to { width: 100%; } }
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-wrap img { width: 55px; }

.logo-text h1 {
    font-size: 1.3rem;
    color: var(--bronze);
    line-height: 1;
}

.logo-text p {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
}

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

.nav-link {
    text-decoration: none;
    color: var(--deep);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 50px;
    transition: 0.4s;
}

.nav-link:hover { color: var(--bronze); background: rgba(213, 174, 101, 0.1); }

.nav-link.active {
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    color: var(--white);
    box-shadow: 0 8px 20px rgba(146, 109, 58, 0.3);
}

.contact-trigger {
    background: var(--deep);
    color: var(--gold);
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s;
    border: 2px solid transparent;
}

.contact-trigger:hover {
    background: transparent;
    border-color: var(--deep);
    transform: translateY(-3px);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    width: 28px;
    height: 3px;
    background: var(--bronze);
    border-radius: 5px;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

.hero-image-box {
    position: absolute;
    inset: 0;
    background: url('images/image.png') center/cover;
    z-index: -1;
    filter: brightness(0.9) contrast(1.1);
    animation: heroZoom 30s infinite alternate;
}

.hero-image-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(253, 251, 249, 0.95), rgba(253, 251, 249, 0.2));
}

@keyframes heroZoom {
    from { transform: scale(1) rotate(0deg); }
    to { transform: scale(1.15) rotate(1deg); }
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(73, 48, 0, 0.15);
    color: var(--bronze);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 800;
    margin-bottom: 25px;
    border-right: 4px solid var(--gold);
}

.hero h2 {
    font-size: clamp(2rem, 6vw, 4.5rem);
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 25px;
}

.hero h2 span {
    color: var(--gold);
    background: linear-gradient(to bottom, var(--gold), var(--bronze));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.2rem;
    color: #555;
    max-width: 650px;
    margin-bottom: 40px;
}

.hero-cta { display: flex; gap: 20px; }

.main-btn {
    background: var(--bronze);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(146, 109, 58, 0.3);
    transition: 0.5s;
}

.alt-btn {
    padding: 18px 45px;
    border: 2px solid var(--beige);
    border-radius: 12px;
    text-decoration: none;
    color: var(--deep);
    font-weight: 700;
    transition: 0.5s;
}

.main-btn:hover { background: var(--gold); transform: translateY(-5px); }

.side-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 2000;
    transition: 0.7s cubic-bezier(0.9, 0, 0.1, 1);
    box-shadow: -20px 0 60px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    padding: 60px;
}

.side-panel.active { right: 0; }

.close-panel {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 3rem;
    background: none;
    border: none;
    color: var(--gold);
}

.mobile-links { list-style: none; width: 100%; }

.mobile-links li { margin: 20px 0; border-bottom: 1px solid var(--soft); }

.mobile-links a {
    text-decoration: none;
    color: var(--deep);
    font-size: 1.8rem;
    font-weight: 900;
    transition: 0.3s;
}

.mobile-links a.active { color: var(--gold); padding-right: 15px; border-right: 5px solid var(--gold); }

@media (max-width: 992px) {
    .main-nav, .contact-trigger { display: none; }
    .burger { display: flex; }
    .nav-container { border-radius: 20px; padding: 10px 20px; width: 95%; margin: auto; }
    .hero { text-align: center; justify-content: center; padding-top: 100px; }
    .hero-cta { flex-direction: column; }
    .side-panel { width: 80%; }
}

.element {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
}

.e1 { width: 400px; height: 400px; background: var(--gold); top: -100px; left: -100px; }
.e2 { width: 300px; height: 300px; background: var(--beige); bottom: -50px; right: 0; }
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 5%;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

header.sticky {
    background: rgba(253, 251, 249, 0.95);
    backdrop-filter: blur(15px);
    padding: 10px 5%;
    box-shadow: 0 10px 30px rgba(146, 109, 58, 0.1);
}

.nav-container {
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-wrap img {
    width: 110px;
    height: auto;
    transition: 0.4s;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

header.sticky .logo-wrap img {
    width: 85px;
}
.mobile-links li {
    margin: 45px 0;
    border: none;
}

.mobile-links a {
    text-decoration: none;
    color: var(--deep);
    font-size: 1.4rem;
    font-weight: 900;
    transition: 0.3s;
    display: block;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 5%;
    transition: 0.4s ease-in-out;
}

header.sticky {
    background: rgba(253, 251, 249, 0.98);
    backdrop-filter: blur(15px);
    padding: 5px 5%;
    box-shadow: 0 5px 25px rgba(146, 109, 58, 0.1);
}

.nav-container {
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-wrap img {
    width: 85px;
    height: auto;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.sticky .logo-wrap img {
    width: 65px;
}

.nav-link {
    font-size: 0.85rem;
    padding: 8px 15px;
}

.contact-trigger {
    padding: 10px 20px;
    font-size: 0.85rem;
}
@media (max-width: 992px) {
    .side-panel {
        width: 50%;
    }
}
.modern-about {
    padding: 100px 5px;
    position: relative;
    background-color: var(--soft);
    overflow: hidden;
}

.about-shape {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(213, 174, 101, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-inner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual-content {
    position: relative;
    padding: 20px;
}

.art-frame {
    position: relative;
    height: 550px;
}

.main-img-box {
    width: 85%;
    height: 480px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(38, 39, 33, 0.15);
    border: 1px solid var(--beige);
}

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

.sub-img-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 240px;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    border: 10px solid var(--white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.sub-img-box img { width: 100%; height: 100%; object-fit: cover; }

.floating-card {
    position: absolute;
    top: 10%;
    right: -20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    border-right: 5px solid var(--gold);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    width: 200px;
    animation: float 4s infinite ease-in-out;
}

.floating-card i { color: var(--gold); font-size: 2rem; margin-bottom: 10px; }
.floating-card h4 { font-size: 1rem; color: var(--deep); margin-bottom: 5px; }
.floating-card p { font-size: 0.8rem; color: #777; }

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

.stamp-line { width: 40px; height: 2px; background: var(--gold); }
.stamp-text { color: var(--gold); font-weight: 800; letter-spacing: 2px; font-size: 0.9rem; }

.title-gradient {
    font-size: 3rem;
    color: var(--deep);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
}

.title-gradient span {
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rich-promo-text p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.s-card {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.s-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(213, 174, 101, 0.1);
}

.s-icon {
    width: 50px;
    height: 50px;
    background: rgba(213, 174, 101, 0.1);
    color: var(--bronze);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.4rem;
}

.s-info h3 { font-size: 1.6rem; color: var(--deep); font-weight: 900; line-height: 1; }
.s-info span { font-size: 0.85rem; color: #888; font-weight: 700; }

.discover-more {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--bronze);
    font-weight: 900;
    font-size: 1.1rem;
    transition: 0.3s;
}

.discover-more:hover { gap: 25px; color: var(--gold); }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@media (max-width: 992px) {
    .about-inner-grid { grid-template-columns: 1fr; padding: 0 5%; }
    .title-gradient { font-size: 2.2rem; }
    .main-img-box { width: 100%; height: 350px; }
    .sub-img-box, .floating-card { display: none; }
    .stats-grid-modern { grid-template-columns: 1fr; }
}
.premium-services {
    background-color: #262721;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.content-wrapper-large {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1%;
}

.services-main-head {
    text-align: center;
    margin-bottom: 80px;
}

.top-label {
    color: #d5ae65;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 20px;
}

.dynamic-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: #ffffff;
    font-weight: 900;
    line-height: 1.2;
}

.dynamic-title span {
    color: #d5ae65;
}

.head-paragraph {
    color: #cbc2bb;
    font-size: 1.2rem;
    max-width: 900px;
    margin: 30px auto 0;
    line-height: 2;
    font-weight: 400;
}

.services-mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.lux-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 40px;
    padding: 60px;
    border: 1px solid rgba(213, 174, 101, 0.1);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 100%;
}

.lux-card:hover {
    transform: translateY(-15px);
    border-color: #d5ae65;
    background: rgba(213, 174, 101, 0.05);
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.card-inner-box {
    position: relative;
    z-index: 2;
}

.header-icon {
    width: 80px;
    height: 80px;
    background: #d5ae65;
    color: #262721;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 35px;
    box-shadow: 0 10px 30px rgba(213, 174, 101, 0.3);
}

.lux-card h3 {
    color: #d5ae65;
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.long-text {
    color: #cbc2bb;
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 35px;
    text-align: justify;
}

.long-text strong {
    color: #ffffff;
    font-weight: 700;
}

.feature-bullets {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-bullets span {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-bullets i {
    color: #926d3a;
    font-size: 1.1rem;
}

@media (max-width: 1200px) {
    .content-wrapper-large { padding: 0 5%; }
    .lux-card { padding: 40px; }
}

@media (max-width: 992px) {
    .services-mega-grid { grid-template-columns: 1fr; }
    .dynamic-title { font-size: 2.5rem; }
}
.gallery-section {
    background-color: #fdfbf9;
    padding: 100px 0;
}

.gallery-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4%;
}

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

.gallery-label {
    color: #926d3a;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

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

.gallery-title span {
    color: #d5ae65;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(146, 109, 58, 0.2);
}

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

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-container {
        padding: 0 10%;
    }
}
.blog-section { padding: 100px 0; background: #f4e8db; }
.blog-header { text-align: center; margin-bottom: 60px; padding: 0 10%; }
.blog-header .label { color: var(--gold); font-weight: 800; letter-spacing: 2px; }
.blog-header h2 { font-size: 3rem; color: var(--dark); font-weight: 900; }
.blog-header h2 span { color: var(--gold); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding: 0 5%; }
.blog-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.05); transition: 0.5s; }
.blog-card:hover { transform: translateY(-15px); box-shadow: 0 25px 50px rgba(213, 174, 101, 0.2); }
.blog-img { height: 250px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s; }
.blog-card:hover img { transform: scale(1.1); }
.blog-info { padding: 30px; }
.blog-info h3 { font-size: 1.4rem; color: var(--dark); margin-bottom: 15px; font-weight: 800; line-height: 1.4; }
.blog-info p { color: #777; font-size: 0.95rem; margin-bottom: 20px; }
.read-more { display: inline-block; color: var(--gold); text-decoration: none; font-weight: 900; border-bottom: 2px solid var(--gold); padding-bottom: 5px; transition: 0.3s; }
.read-more:hover { color: var(--dark); border-color: var(--dark); }

@media (max-width: 992px) {
    .blog-grid { grid-template-columns: 1fr; padding: 0 10%; }
    .blog-header h2 { font-size: 2.2rem; }
}
.testimonials-section {
    padding: 100px 0;
    background-color: #262721;
}

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

.test-header .label {
    color: #d5ae65;
    font-weight: 800;
    letter-spacing: 2px;
}

.test-header .title {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 900;
    margin-top: 10px;
}

.test-header .title span {
    color: #d5ae65;
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 5%;
}

.test-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(213, 174, 101, 0.1);
    padding: 30px;
    border-radius: 20px;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.test-card:hover {
    background: rgba(213, 174, 101, 0.05);
    border-color: #d5ae65;
    transform: translateY(-8px);
}

.stars {
    color: #d5ae65;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.test-card p {
    color: #cbc2bb;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.test-card h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    text-align: left;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 15px;
}

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

@media (max-width: 768px) {
    .test-grid { grid-template-columns: 1fr; padding: 0 10%; }
    .test-header .title { font-size: 1.8rem; }
}
.why-us-creative {
    background-color: #20211b;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.why-visual-side {
    position: relative;
    height: 600px;
}

.experience-circle {
    width: 350px;
    height: 350px;
    border: 2px dashed #d5ae65;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 20s linear infinite;
}

.circle-content {
    background: #d5ae65;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #262721;
    animation: counter-rotate 20s linear infinite;
    box-shadow: 0 0 50px rgba(213, 174, 101, 0.3);
}

.circle-content .num { font-size: 4rem; font-weight: 900; line-height: 1; }
.circle-content .label { font-size: 0.9rem; font-weight: 700; }

.feature-blob {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(213, 174, 101, 0.2);
    padding: 20px 30px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-weight: 700;
    z-index: 2;
    transition: 0.5s;
}

.feature-blob i { color: #d5ae65; font-size: 1.5rem; }
.feature-blob:hover { background: #d5ae65; color: #262721; transform: scale(1.1); }
.feature-blob:hover i { color: #262721; }

.b1 { top: 10%; right: 0; }
.b2 { bottom: 15%; right: 10%; }
.b3 { top: 40%; left: -10%; }

.why-tag { color: #d5ae65; font-weight: 800; letter-spacing: 2px; margin-bottom: 20px; }
.why-main-title { font-size: 3rem; color: #fff; font-weight: 900; margin-bottom: 40px; line-height: 1.2; }
.why-main-title span { color: #d5ae65; }

.reasons-stack { display: flex; flex-direction: column; gap: 35px; }
.reason-item { border-right: 3px solid rgba(213, 174, 101, 0.1); padding-right: 30px; transition: 0.4s; }
.reason-item:hover { border-color: #d5ae65; }

.reason-head { display: flex; align-items: center; gap: 20px; margin-bottom: 15px; }
.r-count { font-size: 1.2rem; font-weight: 900; color: #d5ae65; opacity: 0.5; }
.reason-item h3 { color: #fff; font-size: 1.5rem; font-weight: 800; }
.reason-item p { color: #cbc2bb; line-height: 1.8; font-size: 1.05rem; }

.trust-footer { display: flex; gap: 30px; margin-top: 50px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); }
.trust-item { display: flex; align-items: center; gap: 10px; color: #926d3a; font-weight: 700; font-size: 0.9rem; }

@keyframes rotate { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes counter-rotate { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

@media (max-width: 1100px) {
    .why-inner { grid-template-columns: 1fr; }
    .why-visual-side { height: 400px; order: 2; }
    .experience-circle { width: 250px; height: 250px; }
    .circle-content { width: 150px; height: 150px; }
    .circle-content .num { font-size: 2.5rem; }
    .why-main-title { font-size: 2.2rem; }
    .feature-blob { font-size: 0.8rem; padding: 15px 20px; }
}
@media (max-width: 768px) {
    .why-visual-side {
        height: 380px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
    }

    .experience-circle {
        width: 240px;
        height: 240px;
    }

    .circle-content {
        width: 140px;
        height: 140px;
    }

    .circle-content .num {
        font-size: 2.5rem;
    }

    .feature-blob {
        padding: 12px 18px;
        font-size: 0.75rem;
        gap: 8px;
        white-space: nowrap;
        border-radius: 50px;
    }

    .b1 { top: 0; right: 2%; }
    .b2 { bottom: 0; right: 2%; }
    .b3 { top: 45%; left: 2%; }
}
.luxury-contact {
    padding: 120px 0;
    position: relative;
    background: url('images/IMG-20260831-WA0033.jpg') center/cover no-repeat fixed;
    overflow: hidden;
    z-index: 1;
}

.contact-blur-bg {
    position: absolute;
    inset: 0;
    background: rgba(32, 33, 27, 0.7);
    backdrop-filter: blur(5px);
    z-index: -1;
}

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

.c-badge { color: #d5ae65; font-weight: 800; letter-spacing: 3px; display: block; margin-bottom: 15px; }
.c-main-title { font-size: 3.2rem; color: #fff; font-weight: 900; margin-bottom: 25px; line-height: 1.2; }
.c-main-title span { color: #d5ae65; }
.c-subtitle { color: #cbc2bb; font-size: 1.15rem; max-width: 800px; margin: 0 auto; line-height: 1.8; }

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

.glass-card-item {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(213, 174, 101, 0.15);
    border-radius: 30px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    text-decoration: none;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card-item:hover {
    background: rgba(213, 174, 101, 0.08);
    border-color: #d5ae65;
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.g-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #d5ae65, #926d3a);
    color: #262721;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(213, 174, 101, 0.3);
}

.g-info h3 { color: #d5ae65; font-size: 1.5rem; margin-bottom: 8px; font-weight: 800; }
.g-info span { color: #fff; font-size: 1.3rem; font-weight: 700; }

.address-full-box { margin-bottom: 30px; }
.full-width-card { justify-content: center; text-align: center; }

.map-container-box { position: relative; }
.map-card { padding: 15px; position: relative; flex-direction: column; }

.map-overlay-btn {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
}

.open-map-btn {
    background: #d5ae65;
    color: #262721;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: 0.3s;
}

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

.map-card iframe {
    border-radius: 20px;
    filter: invert(90%) hue-rotate(180deg) brightness(1.1) contrast(0.9);
}

@media (max-width: 992px) {
    .contact-grid-top { grid-template-columns: 1fr; }
    .c-main-title { font-size: 2.2rem; }
    .glass-card-item { padding: 30px; flex-direction: column; text-align: center; }
    .content-wrapper-large { padding: 0 8%; }
    .map-overlay-btn { width: 100%; left: 0; display: flex; justify-content: center; top: 25px; }
}
.main-footer {
    background-color: #151612;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(213, 174, 101, 0.1);
}

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

.footer-col h3 {
    color: #d5ae65;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 900;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #d5ae65;
}

.footer-col p {
    color: #cbc2bb;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #cbc2bb;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: #d5ae65;
    padding-right: 5px;
}

.contact-list li {
    color: #cbc2bb;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.contact-list li i {
    color: #d5ae65;
}

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

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.05);
    color: #d5ae65;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover {
    background: #d5ae65;
    color: #151612;
    transform: translateY(-5px);
}

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

.footer-bottom p {
    color: #777;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.developer a {
    color: #d5ae65;
    text-decoration: none;
    font-weight: 700;
}

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

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: 0.4s;
    animation: pulseFloat 2s infinite;
}

.call-float { background: #d5ae65; color: #151612; }
.whatsapp-float { background: #25d366; }

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

@keyframes pulseFloat {
    0% { box-shadow: 0 0 0 0 rgba(213, 174, 101, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(213, 174, 101, 0); }
    100% { box-shadow: 0 0 0 0 rgba(213, 174, 101, 0); }
}

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

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col h4::after { right: 50%; transform: translateX(50%); }
    .social-links { justify-content: center; }
}
@media (max-width: 768px) {
    .hero h2 {
        font-size: 1.6rem !important;
        line-height: 1.3;
    }

    .hero-desc {
        font-size: 0.85rem !important;
        line-height: 1.6;
    }

    .main-wrapper-padding, 
    .content-wrapper-large {
        padding: 0 4% !important;
    }

    .service-block, 
    .blog-card, 
    .test-card {
        padding: 25px 20px !important;
        width: 100% !important;
    }

    .service-block p, 
    .blog-info p, 
    .test-card p {
        font-size: 0.85rem !important;
        margin-bottom: 15px !important;
    }

    .service-icon-wrap {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
    }

    .close-panel {
        top: 15px !important;
        left: 15px !important;
        font-size: 2.2rem !important;
        z-index: 2100;
    }

    .mobile-links {
        padding-top: 60px !important;
    }

    .mobile-links li {
        margin: 25px 0 !important;
    }

    .mobile-links a {
        font-size: 1.4rem !important;
    }
}
.white-collections {
    background-color: #ffffff;
    padding: 100px 0;
    border-top: 1px solid #f0f0f0;
}

.coll-header-white {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 10%;
}

.badge-gold {
    color: #926d3a;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 2px solid #d5ae65;
    padding-bottom: 5px;
    margin-bottom: 15px;
    display: inline-block;
}

.title-dark {
    font-size: 3rem;
    color: #262721;
    font-weight: 900;
    margin: 15px 0;
}

.title-dark span {
    color: #d5ae65;
}

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

.modern-filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 60px;
}

.filter-trigger {
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #262721;
    padding: 12px 28px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.4s;
    font-size: 0.95rem;
}

.filter-trigger:hover, .filter-trigger.active {
    background: #262721;
    color: #d5ae65;
    border-color: #262721;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.coll-masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 5%;
}

.masonry-item {
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1;
    transition: 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    border: 1px solid #eee;
}

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

.masonry-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #d5ae65;
}

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

@media (max-width: 1200px) {
    .coll-masonry-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .coll-masonry-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .title-dark { font-size: 2rem; }
    .filter-trigger { font-size: 0.8rem; padding: 10px 15px; }
}

@media (max-width: 480px) {
    .coll-masonry-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .coll-masonry-grid {
        grid-template-columns: 1fr !important;
        padding: 0 8% !important;
    }

    .mobile-links a {
        font-size: 1rem !important;
    }
    
    .masonry-item {
        aspect-ratio: auto !important;
        height: auto !important;
    }
}
.contact-dual-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    margin-bottom: 30px;
}

.contact-cards-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-container {
    flex-direction: column;
    align-items: flex-start !important;
    height: 100%;
}

.form-container h3 {
    color: #d5ae65;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 800;
}

#whatsappForm {
    width: 100%;
    display: grid;
    gap: 15px;
}

#whatsappForm input, 
#whatsappForm select, 
#whatsappForm textarea {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(213, 174, 101, 0.2);
    color: #fff;
    outline: none;
    font-size: 0.95rem;
}

#whatsappForm select option {
    background: #262721;
    color: #fff;
}

#whatsappForm button {
    background: #d5ae65;
    color: #262721;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#whatsappForm button:hover {
    background: #fff;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .contact-dual-layout {
        grid-template-columns: 1fr;
    }
}