:root {
    --primary: #a76512;
    --secondary: #5b4d42;
    --bg-dark: #2a2925;
    --text-white: #ffffff;
    --gold-bright: #ffbf00;
    --glass-bg: rgba(42, 41, 37, 0.92);
    --transition-smooth: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
}

.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(167, 101, 18, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    z-index: 2000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    height: 80px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.nav-container {
    width: 92%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-logo { height: 60px; filter: drop-shadow(0 0 10px var(--primary)); animation: rotateLogo 10s linear infinite; }
@keyframes rotateLogo { 0% { filter: hue-rotate(0deg); } 100% { filter: hue-rotate(20deg); } }

.brand-text { font-size: 1.6rem; font-weight: 900; letter-spacing: -1px; }
.brand-text span { color: var(--primary); text-shadow: 0 0 15px rgba(167,101,18,0.5); }

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

.link {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 20px;
    border-radius: 15px;
    transition: var(--transition-smooth);
    position: relative;
}

.link:hover { color: var(--primary); background: rgba(167, 101, 18, 0.1); transform: translateY(-3px); }

.link.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 20px rgba(167, 101, 18, 0.4);
}

.btn-call {
    position: relative;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 900;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(167, 101, 18, 0.3);
    transition: var(--transition-smooth);
}

.btn-call:hover { transform: scale(1.05) rotate(-1deg); box-shadow: 0 15px 30px var(--primary); }

.btn-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine { 0% { left: -100%; } 100% { left: 100%; } }

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 7px; padding: 10px; }
.hamburger span { width: 35px; height: 4px; background: var(--primary); border-radius: 10px; transition: 0.4s; }

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

.hero-bg-zoom {
    position: absolute;
    width: 100%; height: 100%;
    background: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=2070') center/cover;
    animation: zoom 25s infinite alternate;
    z-index: -3;
}

@keyframes zoom { from { transform: scale(1); } to { transform: scale(1.25); } }

.hero-overlay-multi {
    position: absolute;
    width: 100%; height: 100%;
    background: radial-gradient(circle, transparent 20%, var(--bg-dark) 90%), 
                linear-gradient(to top, var(--bg-dark), transparent);
    z-index: -2;
}

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

.reveal-text { color: var(--primary); font-size: 1.4rem; font-weight: 700; margin-bottom: 20px; letter-spacing: 5px; text-transform: uppercase; }
.gold-gradient {
    background: linear-gradient(to right, var(--primary), var(--gold-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 5px 15px rgba(167,101,18,0.4));
}

.hero-para { font-size: 1.4rem; color: #ccc; max-width: 850px; margin: 0 auto 45px; line-height: 1.8; }

.btns-group { display: flex; gap: 25px; justify-content: center; }

.btn-luxury {
    padding: 20px 45px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-luxury.main { background: var(--primary); color: white; box-shadow: 0 15px 35px var(--gold-glow); }
.btn-luxury.secondary { border-color: var(--primary); color: var(--primary); }

.btn-luxury:hover { transform: translateY(-8px) scale(1.05); box-shadow: 0 20px 40px rgba(167,101,18,0.5); }

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: -150%;
        left: 50%;
        transform: translate(-50%, 0);
        width: 85%;
        max-width: 450px;
        background: var(--glass-bg);
        backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 50px 20px;
        border-radius: 35px;
        border: 2px solid var(--primary);
        box-shadow: 0 40px 100px rgba(0,0,0,0.8);
        gap: 20px;
        transition: 0.7s cubic-bezier(0.68, -0.6, 0.32, 1.6);
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu.active {
        top: 110px;
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li { width: 100%; display: flex; justify-content: center; }

    .link {
        font-size: 1.3rem;
        padding: 20px;
        width: 90%;
        text-align: center;
        border-bottom: 1px solid rgba(167,101,18,0.1);
    }

    .hamburger { display: flex; }
    .btn-call { display: none; }
    .main-title-anim { font-size: 3rem; }
    .hero-para { font-size: 1.1rem; }
    .btns-group { flex-direction: column; width: 100%; }
    
    .hamburger.active .l1 { transform: translateY(11px) rotate(45deg); }
    .hamburger.active .l2 { opacity: 0; transform: translateX(-20px); }
    .hamburger.active .l3 { transform: translateY(-11px) rotate(-45deg); }
}

.placeholder { height: 100vh; display: flex; align-items: center; justify-content: center; background: #222; }
.hero-box-glass {
    padding: 45px 35px;
    max-width: 1000px;
    background: rgba(26, 25, 23, 0.75);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 1px solid rgba(167, 101, 18, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    margin: 0 auto;
    animation: fadeInUp 1s ease-out forwards;
}
.main-title-anim {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero-para {
    font-size: 1.15rem;
    color: #f0f0f0;
    max-width: 720px;
    margin: 0 auto 35px;
    line-height: 1.7;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}
.reveal-text {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 3px;
    display: block;
}

.btn-luxury {
    padding: 15px 38px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .main-title-anim { font-size: 1.4rem; }
    .hero-box-glass { padding: 30px 20px; width: 92%; }
    .hero-para { font-size: 1.05rem; }
    .reveal-text { font-size: 0.95rem; }
}
.about-creative-section {
    padding: 100px 20px;
    background: #ffffff;
    color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

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

.about-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.image-stack {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

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

.image-stack:hover .img-main { transform: scale(1.1); }

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(167, 101, 18, 0.4);
}

.experience-badge .num { font-size: 2.5rem; font-weight: 900; }
.experience-badge .txt { font-size: 0.8rem; font-weight: 700; text-align: center; }

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

.stat-card {
    background: #fdfdfd;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
}

.stat-card:hover { 
    border-color: var(--primary); 
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.stat-card h3 { font-size: 2.2rem; color: var(--primary); margin-bottom: 5px; }
.stat-card p { font-size: 0.9rem; color: var(--secondary); font-weight: 700; }

.section-tag {
    background: rgba(167, 101, 18, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
}

.about-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
}

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

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

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 45px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.f-icon {
    min-width: 45px;
    height: 45px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(167, 101, 18, 0.3);
}

.f-text h4 { font-size: 1.2rem; margin-bottom: 5px; color: var(--bg-dark); }
.f-text p { font-size: 0.95rem; color: #777; }

.about-cta-btn {
    display: inline-block;
    background: var(--bg-dark);
    color: white;
    padding: 18px 40px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-cta-btn:hover { background: var(--primary); transform: scale(1.05); }

@media (max-width: 992px) {
    .about-wrapper { grid-template-columns: 1fr; }
    .about-visual { order: 2; }
    .about-title { font-size: 2.2rem; }
    .experience-badge { padding: 15px; right: 10px; bottom: 10px; }
}
.services-advanced-section {
    padding: 120px 0;
    background-color: #2a2925;
    color: #ffffff;
    position: relative;
}

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

.tag-line {
    color: #a76512;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.section-main-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
}

.gold-text {
    color: #a76512;
}

.section-sub-text {
    font-size: 1.2rem;
    color: #bbb;
    line-height: 1.8;
}

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

.service-card {
    background: rgba(91, 77, 66, 0.1);
    border: 1px solid rgba(167, 101, 18, 0.2);
    padding: 50px;
    border-radius: 30px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: #a76512;
    background: rgba(167, 101, 18, 0.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.s-icon-box {
    width: 85px;
    height: 85px;
    background: #a76512;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(167, 101, 18, 0.3);
}

.s-icon-box img {
    width: 48px;
    filter: brightness(0) invert(1);
}

.service-card h3 {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #a76512;
    line-height: 1.3;
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #dddddd;
    margin-bottom: 30px;
    text-align: justify;
}

.s-list {
    list-style: none;
    margin-top: auto;
    padding: 0;
}

.s-list li {
    padding: 10px 0;
    padding-right: 30px;
    position: relative;
    font-weight: 700;
    color: #ffffff;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.s-list li:last-child {
    border-bottom: none;
}

.s-list li::before {
    content: '◈';
    position: absolute;
    right: 0;
    color: #a76512;
    font-size: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 992px) {
    .services-grid { 
        grid-template-columns: 1fr; 
    }
    .section-main-title { 
        font-size: 2.5rem; 
    }
    .service-card { 
        padding: 35px 25px; 
    }
    .services-advanced-section { 
        padding: 80px 0; 
    }
    .service-card h3 {
        font-size: 1.6rem;
    }
}
.services-advanced-section {
    padding: 120px 6%;
}

@media (max-width: 992px) {
    .services-advanced-section {
        padding: 80px 5%;
    }
}
.gallery-section {
    padding: 100px 6%;
    background-color: #f0f0ed;
    color: rgb(18, 18, 18);
}

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

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.section-desc {
    font-size: 1.1rem;
    color: #5c5a5a;
}

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

.filter-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #a76512;
    color: #a76512;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: #a76512;
    color: white;
    box-shadow: 0 10px 20px rgba(167, 101, 18, 0.3);
}

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

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(167, 101, 18, 0.2);
    transition: 0.5s ease;
}

.gallery-item img, .gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    border-color: #a76512;
    z-index: 10;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.gallery-item.hide {
    display: none;
}

@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .gallery-filter { flex-direction: column; align-items: center; }
    .filter-btn { width: 100%; max-width: 250px; }
    .gallery-grid { grid-template-columns: 1fr; }
}
.blog-section {
    padding: 100px 6%;
    background-color: #f8f5f2;
    color: #2a2925;
}

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

.blog-tag {
    color: #a76512;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.blog-main-title {
    font-size: 3rem;
    font-weight: 900;
    margin: 15px 0;
}

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

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

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(167, 101, 18, 0.15);
}

.blog-img {
    height: 230px;
    overflow: hidden;
}

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

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

.blog-body {
    padding: 30px;
}

.blog-body h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2a2925;
    line-height: 1.4;
}

.blog-body p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.read-more {
    color: #a76512;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.read-more::after {
    content: '←';
}

.read-more:hover {
    gap: 15px;
}

@media (max-width: 992px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-main-title { font-size: 2.2rem; }
}
.testimonials-section {
    padding: 100px 6%;
    background-color: #ffffff;
    overflow: hidden;
}

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

.t-tag {
    color: #a76512;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.t-title {
    font-size: 3rem;
    font-weight: 900;
    color: #2a2925;
    margin: 15px 0;
}

.t-subtitle {
    color: #777;
    font-size: 1.1rem;
}

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

.testi-card {
    background: #fdfcfb;
    padding: 40px 30px;
    border-radius: 25px;
    border: 1px solid #eee;
    position: relative;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.testi-card:hover {
    transform: translateY(-15px);
    background: #fff;
    box-shadow: 0 25px 50px rgba(167, 101, 18, 0.1);
    border-color: #a76512;
}

.quote-icon {
    font-size: 5rem;
    color: rgba(167, 101, 18, 0.1);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    font-family: serif;
}

.testi-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    font-weight: 600;
}

.stars {
    color: #ffbf00;
    font-size: 1rem;
    margin-bottom: 15px;
    margin-top: auto;
}

.client-name {
    color: #2a2925;
    font-weight: 800;
    font-size: 0.95rem;
}

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

@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .t-title { font-size: 2.2rem; }
    .testi-card { padding: 30px 20px; }
}
.advantages-dark-section {
    padding: 120px 6%;
    background: radial-gradient(circle at top right, #35342f, #2a2925);
    color: white;
    position: relative;
    overflow: hidden;
}

.advantages-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.top-tag {
    color: #a76512;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.adv-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
}

.adv-desc {
    font-size: 1.2rem;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(167, 101, 18, 0.1);
    padding: 25px;
    border-right: 4px solid #a76512;
    border-radius: 10px;
}

.badge-icon {
    font-size: 2.5rem;
    color: #a76512;
}

.badge-text h4 { font-size: 1.2rem; margin-bottom: 5px; }
.badge-text p { font-size: 0.9rem; color: #ccc; }

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

.adv-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(167, 101, 18, 0.1);
    transition: 0.4s;
    position: relative;
}

.adv-card:hover {
    background: rgba(167, 101, 18, 0.05);
    border-color: #a76512;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.card-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(167, 101, 18, 0.2);
    position: absolute;
    top: 20px;
    left: 30px;
}

.adv-card h3 {
    font-size: 1.5rem;
    color: #a76512;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.adv-card p {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.item-1 { transform: translateY(-20px); }
.item-4 { transform: translateY(20px); }

@media (max-width: 1100px) {
    .advantages-wrapper { grid-template-columns: 1fr; }
    .item-1, .item-4 { transform: none; }
}

@media (max-width: 768px) {
    .adv-title { font-size: 2.2rem; }
    .advantages-cards { grid-template-columns: 1fr; }
    .adv-card { padding: 30px; }
}
.contact-blur-section {
    padding: 120px 6%;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

.contact-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=2070') center/cover;
    filter: blur(8px) brightness(0.3);
    transform: scale(1.1);
    z-index: 1;
}

.relative-z { position: relative; z-index: 5; width: 100%; }

.contact-header { text-align: center; margin-bottom: 60px; }
.c-tag { color: #a76512; font-weight: 800; letter-spacing: 2px; }
.c-title { font-size: 3.5rem; font-weight: 900; margin: 15px 0; }
.c-subtitle { font-size: 1.2rem; color: #ccc; max-width: 700px; margin: 0 auto; }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 50px 30px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s;
}

.contact-card:hover {
    background: rgba(167, 101, 18, 0.15);
    border-color: #a76512;
    transform: translateY(-10px);
}

.card-icon { font-size: 3rem; margin-bottom: 20px; }
.contact-card h3 { font-size: 1.8rem; margin-bottom: 10px; color: #a76512; }
.contact-card p { color: #ddd; margin-bottom: 25px; }

.contact-link {
    display: inline-block;
    padding: 12px 35px;
    background: #a76512;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.2rem;
    direction: ltr;
    transition: 0.3s;
}

.contact-link:hover { transform: scale(1.1); box-shadow: 0 10px 20px rgba(167,101,18,0.4); }

.contact-footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-item { display: flex; align-items: center; gap: 10px; font-size: 1.3rem; font-weight: 700; }
.f-icon { font-size: 1.5rem; color: #a76512; }

.fb-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
    transition: 0.3s;
}

.fb-link:hover { background: #1877f2; transform: translateY(-5px); }
.fb-link img { width: 30px; }

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .c-title { font-size: 2.2rem; }
    .contact-card { padding: 35px 20px; }
    .contact-link { font-size: 1.1rem; }
}
.main-footer {
    background-color: #1a1917;
    color: #fff;
    padding: 80px 6% 30px;
    border-top: 4px solid #a76512;
}

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

.footer-brand {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-brand span { color: #a76512; }

.footer-desc {
    color: #aaa;
    line-height: 1.8;
    font-size: 0.95rem;
}

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

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

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover { color: #a76512; transform: translateX(-5px); }

.contact-info { list-style: none; }
.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-info .icon { color: #a76512; font-style: normal; }

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

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

.developer-credit { font-size: 0.85rem; color: #555; }
.developer-credit a {
    color: #a76512;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.developer-credit a:hover { text-decoration: underline; }

/* Floating Buttons */
.floating-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.float-btn img { width: 30px; filter: brightness(0) invert(1); }

.float-btn.whatsapp { background-color: #25d366; }
.float-btn.phone { background-color: #a76512; }

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

.pulse-ring {
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.8); opacity: 0; }
}

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

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .floating-container { bottom: 20px; left: 20px; }
    .float-btn { width: 50px; height: 50px; }
    .float-btn img { width: 25px; }
}
.floating-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

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

.float-btn.whatsapp { background-color: #25d366; }
.float-btn.phone { background-color: #a76512; }

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.pulse-ring {
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.8); opacity: 0; }
}

@media (max-width: 600px) {
    .floating-container { bottom: 20px; left: 20px; }
    .float-btn { width: 55px; height: 55px; }
    .float-btn svg { transform: scale(0.9); }
}
@media (max-width: 768px) {
    .brand-text {
        font-size: 1rem !important;
        white-space: nowrap; 
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .brand-text span {
        display: inline !important;
        font-size: 1rem !important;
    }

    .main-logo {
        height: 35px !important; 
    }

    .logo-box {
        gap: 8px !important; 
    }
}
.f-icon {
    min-width: 45px;
    height: 45px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(167, 101, 18, 0.3);
    flex-shrink: 0; 
}

.f-icon svg {
    display: block;
}
@media (max-width: 768px) {
    .brand-text {
        font-size: 0.85rem !important;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 3px;
    }

    .brand-text span {
        display: inline !important;
        font-size: 0.85rem !important;
    }

    .main-logo {
        height: 30px !important;
    }
}