:root {
    --bg-dark: #1b3022;
    --accent: #d4af37;  
    --cream: #f4f1ea;   
    --text-light: #ffffff;
    --glass: rgba(255, 255, 255, 0.08);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

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

.container { width: 90%; max-width: 1200px; margin: auto; }
#main-header {
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    transition: var(--transition-smooth);
}

.floating-nav {
    width: 90%;
    background: rgba(27, 48, 34, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
#main-header.scrolled {
    top: 0;
}
#main-header.scrolled .floating-nav {
    width: 100%;
    border-radius: 0;
    background: var(--bg-dark);
}

.logo-box { display: flex; align-items: center; gap: 12px; }
.nav-logo { height: 55px; }
.logo-text { display: flex; flex-direction: column; }
.main-name { color: var(--text-light); font-weight: 900; font-size: 1.8rem; line-height: 1; }
.sub-name { color: var(--accent); font-size: 0.75rem; font-weight: 400; letter-spacing: 1px; }

.nav-links { display: flex; list-style: none; gap: 25px; }
.link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: 0.3s;
}
.link:hover, .link.active { color: var(--accent); transform: translateY(-2px); }

.call-btn {
    background: var(--accent);
    color: var(--bg-dark);
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

.hero-bg-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}

.hero-bg-image {
    width: 100%; height: 100%;
    background: url('images/bg.png') center/cover;
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); filter: blur(2px); }
    100% { transform: scale(1.2); filter: blur(5px); }
}

.hero-blur-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to left, rgba(27, 48, 34, 0.5), rgba(27, 48, 34, 0.4));
}

.hero-content { z-index: 10; text-align: right; }
.hero-content h1 { font-size: 3.8rem; font-weight: 900; margin-top: 70px; color: var(--cream); text-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.hero-content p { font-size: 1.2rem; max-width: 750px; line-height: 1.9; margin-bottom: 20px; color: rgba(255,255,255,0.9); }
.seo-dense { font-size: 0.9rem !important; opacity: 0.7; border-right: 3px solid var(--accent); padding-right: 20px; }
.hero-btns-group { display: flex; gap: 20px; margin-top: 40px; }
.main-btn { padding: 18px 40px; background: var(--accent); color: var(--bg-dark); text-decoration: none; border-radius: 12px; font-weight: 800; transition: 0.4s; }
.sec-btn { padding: 18px 40px; border: 2px solid rgba(255,255,255,0.3); color: white; text-decoration: none; border-radius: 12px; font-weight: 800; backdrop-filter: blur(10px); transition: 0.4s; }
.main-btn:hover { background: white; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.mobile-overlay {
    position: fixed;
    top: -110%; left: 0; width: 100%; height: 100%;
    background: var(--bg-dark);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}
.mobile-overlay.active { top: 0; }

.menu-close-btn {
    position: absolute;
    top: 40px; left: 40px;
    background: var(--accent);
    border: none; padding: 10px 20px;
    border-radius: 50px; font-weight: 800; cursor: pointer;
}

.mobile-links { list-style: none; text-align: center; }
.mobile-links li a { color: white; text-decoration: none; font-size: 2rem; font-weight: 800; display: block; margin: 15px 0; transition: 0.3s; }
.mobile-links li a:hover { color: var(--accent); }

.menu-open-btn {
    display: none; background: none; border: none;
    cursor: pointer; flex-direction: column; gap: 6px;
}
.menu-open-btn span { width: 30px; height: 3px; background: var(--accent); border-radius: 2px; }
@media (max-width: 992px) {
    .nav-links, .desktop-only { display: none; }
    .menu-open-btn { display: flex; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1rem; }
    .hero-btns-group { flex-direction: column; width: 100%; }
    .main-btn, .sec-btn { text-align: center; }
    .floating-nav { padding: 10px 20px; }
}
.reveal-text { opacity: 0; transform: translateY(50px); animation: reveal 1s forwards; }
.reveal-p { opacity: 0; transform: translateY(50px); animation: reveal 1s 0.3s forwards; }
.reveal-p-2 { opacity: 0; transform: translateY(50px); animation: reveal 1s 0.6s forwards; }

@keyframes reveal {
    to { opacity: 1; transform: translateY(0); }
}
.about-section {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.about-visuals {
    position: relative;
    padding: 40px;
}

.main-img-wrapper {
    position: relative;
    width: 80%;
    z-index: 2;
}

.about-img-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
}

.secondary-img-wrapper {
    position: absolute;
    bottom: -10%;
    right: 0;
    width: 50%;
    z-index: 3;
    border: 10px solid var(--cream);
    border-radius: 20px;
    overflow: hidden;
    animation: floatVertical 4s infinite ease-in-out;
}

.secondary-img-wrapper img { width: 100%; }

.experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--bg-dark);
    color: var(--accent);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.2);
    z-index: 4;
}

.experience-badge .number { font-size: 2.5rem; font-weight: 900; display: block; }
.experience-badge .text { font-size: 0.8rem; color: white; white-space: nowrap; }

.floating-card {
    position: absolute;
    top: 50%;
    left: -50px;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    z-index: 5;
    animation: floatHorizontal 5s infinite ease-in-out;
}

.floating-card i { color: var(--accent); font-size: 1.5rem; }
.sub-heading { color: var(--accent); text-transform: uppercase; letter-spacing: 2px; font-size: 1rem; margin-bottom: 10px; }
.main-heading { color: var(--bg-dark); font-size: 2.8rem; font-weight: 900; line-height: 1.2; margin-bottom: 30px; }
.highlight-p { font-size: 1.2rem; color: var(--bg-dark); font-weight: 600; border-right: 4px solid var(--accent); padding-right: 20px; margin-bottom: 30px; }
.content-rich-text p { color: #555; line-height: 1.8; margin-bottom: 20px; text-align: justify; }

.about-features {
    display: grid;
    gap: 25px;
    margin: 40px 0;
}

.feat-item { display: flex; gap: 20px; align-items: flex-start; }
.feat-item i { background: var(--bg-dark); color: var(--accent); width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.feat-item h5 { color: var(--bg-dark); font-size: 1.1rem; margin-bottom: 5px; }
.feat-item p { font-size: 0.9rem; margin: 0; }

.counter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
    margin-top: 40px;
}

.counter-box { text-align: center; }
.counter-box h3 { font-size: 2rem; color: var(--bg-dark); font-weight: 900; margin-bottom: 5px; }
.counter-box span { font-size: 0.8rem; color: #777; font-weight: 600; }
@keyframes floatVertical {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes floatHorizontal {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(15px); }
}
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 100px; }
    .main-heading { font-size: 2rem; }
    .about-visuals { order: 2; }
}
.services-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1b3022 0%, #0d1a12 100%); 
    position: relative;
}

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

.badge {
    background: var(--accent);
    color: var(--bg-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 20px;
}

.light-heading {
    color: white;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.section-desc {
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05); 
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1));
    opacity: 0;
    transition: 0.5s;
}

.glass-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.glass-card:hover::before { opacity: 1; }

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.4s;
}

.card-icon i {
    color: var(--accent);
    font-size: 2rem;
}

.glass-card h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.glass-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.card-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-footer span {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.floating-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

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

.floating-btn.whatsapp { background: #25d366; }
.floating-btn.call { background: var(--accent); color: var(--bg-dark); }

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

.floating-btn i { font-size: 1.5rem; }
.floating-btn::after {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
    animation: pulse 2s infinite;
}

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

@media (max-width: 768px) {
    .light-heading { font-size: 2rem; }
    .floating-container { bottom: 20px; right: 20px; }
    .btn-text { display: none; } 
    .floating-btn { padding: 15px; border-radius: 50%; }
}
@media (max-width: 768px) {
    .hero {
        height: auto; 
        min-height: 90vh;
        padding-top: 120px;
        padding-bottom: 50px;
    }

    .hero-content h1 {
        font-size: 1.4rem !important; 
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 0.85rem !important;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .seo-dense {
        font-size: 0.75rem !important;
        padding-right: 10px;
    }
    .about-section {
        padding: 60px 0;
    }

    .about-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .about-visuals {
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .main-img-wrapper {
        width: 100%;
        position: static;
    }

    .secondary-img-wrapper, .experience-badge, .floating-card {
        position: relative !important; 
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 90% !important;
        margin: 10px auto !important;
        transform: none !important;
        animation: none !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .experience-badge {
        padding: 15px;
        order: -1;
    }

    .floating-card {
        width: fit-content !important;
        padding: 10px 20px;
    }
    .counter-grid {
        grid-template-columns: 1fr; 
        gap: 15px;
        padding: 20px;
    }

    .counter-box h3 {
        font-size: 1.8rem;
    }
    .floating-container {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
}
.gallery-section {
    padding: 100px 0;
    background: #0d1a12; 
    overflow: hidden;
}

.main-slider {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 80px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 500px; 
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    border: 2px solid rgba(212, 175, 55, 0.3); 
    transition: 0.5s;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    filter: brightness(0.8);
    transition: 0.5s;
}

.swiper-slide-active img {
    filter: brightness(1.1);
}
.swiper-button-next, .swiper-button-prev {
    color: var(--accent) !important;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    width: 50px; height: 50px;
    border-radius: 50%;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.2rem !important;
    font-weight: 900;
}

.swiper-pagination-bullet {
    background: var(--accent) !important;
    width: 12px; height: 12px;
}
@media (max-width: 768px) {
    .swiper-slide {
        width: 85%; 
        height: 250px;
    }
    
    .main-slider {
        padding-top: 30px;
        padding-bottom: 60px;
    }
}
.gallery-section {
    padding: 100px 0;
    background: #0d1a12;
    overflow: hidden;
}

.main-slider {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 80px;
}
.swiper-slide {
    width: 500px !important; 
    height: 350px !important; 
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
}
.swiper-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover; 
    object-position: center; 
    display: block;
    filter: brightness(0.8) grayscale(20%); 
    transition: 0.5s;
}
.swiper-slide-active img {
    filter: brightness(1.1) grayscale(0%);
}
@media (max-width: 768px) {
    .swiper-slide {
        width: 85% !important; 
        height: 280px !important; 
        border-radius: 20px;
    }
    
    .main-slider {
        padding-top: 30px;
        padding-bottom: 60px;
    }
}
.why-us-section {
    padding: 120px 0;
    background: #1b3022;
    position: relative;
    overflow: hidden;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.stats-bars { margin-top: 40px; }
.bar-item { margin-bottom: 25px; }
.bar-info { display: flex; justify-content: space-between; color: white; margin-bottom: 8px; font-weight: 700; font-size: 0.9rem; }
.bar-outer { width: 100%; height: 8px; background: rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; }
.bar-inner { 
    height: 100%; 
    background: linear-gradient(90deg, var(--accent), #fff); 
    width: 0; 
    transition: width 2s cubic-bezier(0.16, 1, 0.3, 1); 
}
.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.glass-card-premium {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 30px;
    position: relative;
    transition: 0.5s;
    cursor: default;
    overflow: hidden;
}

.glass-card-premium:hover {
    transform: translateY(-10px) rotateX(10deg) rotateY(-5deg);
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--accent);
}

.card-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, var(--accent) 0%, transparent 70%);
    opacity: 0;
    transition: 0.5s;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.glass-card-premium:hover .card-glow { opacity: 0.3; }

.icon-wrap {
    width: 60px; height: 60px;
    background: var(--accent);
    color: var(--bg-dark);
    border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin-bottom: 20px;
    transition: 0.5s;
}

.glass-card-premium:hover .icon-wrap {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 0 20px var(--accent);
}

.glass-card-premium h3 { color: white; margin-bottom: 15px; font-weight: 800; }
.glass-card-premium p { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.6; }
@media (max-width: 992px) {
    .why-grid { grid-template-columns: 1fr; gap: 50px; }
    .why-cards-grid { grid-template-columns: 1fr; }
    .light-heading { font-size: 2.2rem; }
}
.locations-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #32503c, #1a3422);
    position: relative;
    overflow: hidden;
}
.locations-section::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
    position: relative;
    z-index: 10;
    margin-top: 50px;
}

.glass-tile {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.glass-tile span {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    font-size: 0.95rem;
}

.tile-icon i {
    color: var(--accent);
    font-size: 1.2rem;
    transition: 0.3s;
}

.glass-tile:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--accent);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.glass-tile:hover .tile-icon i {
    transform: scale(1.3);
    text-shadow: 0 0 10px var(--accent);
}

.cta-location {
    text-align: center;
    margin-top: 60px;
    color: white;
}

.cta-location p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}
@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .glass-tile {
        padding: 15px;
    }

    .light-heading {
        font-size: 1.8rem;
    }
}
.locations-grid .location-card:nth-child(n) {
    transition-delay: calc(0.05s * var(--i, 1));
}
.contact-section {
    position: relative;
    padding: 120px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-bg-blur {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('images/about.png') center/cover;
    filter: blur(2px);
    transform: scale(1.1);
    z-index: -2;
}

.contact-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(27, 48, 34, 0.75);
    z-index: -1;
}

.contact-cards-stack {
    max-width: 600px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 40px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-glass-card:hover {
    transform: scale(1.03) translateX(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

.contact-icon {
    width: 65px; height: 65px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: white;
}
.call-bg { background: var(--accent); color: var(--bg-dark); }
.whatsapp-bg { background: #25d366; }
.contact-info h3 { color: white; font-size: 1.2rem; margin-bottom: 5px; }
.contact-info p { color: rgba(255, 255, 255, 0.8); font-size: 1.5rem; font-weight: 900; letter-spacing: 1px; }
.arrow-icon { margin-right: auto; color: var(--accent); font-size: 1.2rem; }
.main-footer {
    background: #0a140d;
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.7);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}
.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    right: 0; bottom: -10px;
    width: 40px; height: 2px;
    background: var(--accent);
}
.footer-logo { color: white; font-size: 1.8rem; font-weight: 900; margin-bottom: 20px; }
.footer-logo span { color: var(--accent); font-size: 0.8rem; display: block; font-weight: 400; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links li a { color: inherit; text-decoration: none; transition: 0.3s; }
.footer-links li a:hover { color: var(--accent); padding-right: 10px; }
.contact-list { list-style: none; }
.contact-list li { display: flex; gap: 15px; margin-bottom: 15px; align-items: center; }
.contact-list li i { color: var(--accent); width: 20px; }
.social-links { display: flex; gap: 15px; margin-top: 25px; }
.social-links a { width: 40px; height: 40px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; transition: 0.3s; text-decoration: none; }
.social-links a:hover { background: var(--accent); color: var(--bg-dark); transform: translateY(-5px); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}
.gmt-credit { margin-top: 10px; color: rgba(255, 255, 255, 0.4); }
.gmt-credit a { color: var(--accent); text-decoration: none; font-weight: 700; }
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col h4::after { right: 50%; transform: translateX(50%); }
    .contact-list li { justify-content: center; }
    .social-links { justify-content: center; }
    .contact-info p { font-size: 1.2rem; }
    .contact-glass-card { padding: 20px; }
}