/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

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

/* Header Styles */
header {
    background: #8c0b28;
    /* Deep burgundy/red from the logo */
    color: white;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo-img {
    height: 120px;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo span {
    color: white;
}

/* Hero Section */
.hero {
    height: 500px;
    background-image: url('/api/placeholder/1200/500');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    /* margin-bottom: 60px; */
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Services Section */
/* Services Section Styles */
.services {
    padding: 60px 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #8c0b28;
    margin: 15px auto 0;
}

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

.service-item {
    text-align: center;
    padding: 40px 25px;
    background-color: white;
    border-radius: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(140, 11, 40, 0.1);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #8c0b28, #cc0f3a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(140, 11, 40, 0.1);
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-icon {
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(140, 11, 40, 0.05), rgba(140, 11, 40, 0.1));
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    background: linear-gradient(135deg, rgba(140, 11, 40, 0.1), rgba(140, 11, 40, 0.2));
}

.icon-svg {
    width: 40px;
    height: 40px;
    stroke: #8c0b28;
    stroke-width: 1.5;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
    transition: all 0.3s ease;
    font-weight: 600;
}

.service-item:hover .service-title {
    color: #8c0b28;
}

.service-item p {
    color: #666;
    line-height: 1.7;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .services-grid {
        gap: 20px;
    }

    .service-item {
        padding: 30px 20px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .icon-svg {
        width: 35px;
        height: 35px;
    }
}

/* About Section */
.about {
    padding: 60px 0;
    margin-bottom: 60px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-image: url('../img/about.webp');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-container {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
    position: relative;
}

.contact-info {
    flex: 1;
    padding: 30px;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.95));
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(140, 11, 40, 0.08);
    border: 1px solid rgba(140, 11, 40, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.contact-header {
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(140, 11, 40, 0.1);
    padding-bottom: 20px;
}

.contact-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #333;
}

.contact-header p {
    color: #666;
    font-size: 1.1rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(140, 11, 40, 0.08), rgba(140, 11, 40, 0.15));
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, rgba(140, 11, 40, 0.15), rgba(140, 11, 40, 0.25));
}

.icon-contact {
    width: 24px;
    height: 24px;
    stroke: #8c0b28;
}

.contact-text {
    flex: 1;
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.contact-text p {
    color: #666;
    line-height: 1.5;
}

.contact-text a {
    color: #8c0b28;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-text a:hover {
    color: #5a0d1e;
    text-decoration: underline;
}

.contact-social {
    padding-top: 20px;
    border-top: 1px solid rgba(140, 11, 40, 0.1);
}

.contact-social h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(140, 11, 40, 0.05), rgba(140, 11, 40, 0.1));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, rgba(140, 11, 40, 0.1), rgba(140, 11, 40, 0.2));
    transform: translateY(-3px);
}

.icon-social {
    width: 18px;
    height: 18px;
    stroke: #8c0b28;
}

.contact-decoration {
    flex: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Globe Animation */
.globe-container {
    width: 100%;
    height: 300px;
    position: relative;
    perspective: 1000px;
}

.globe {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto;
    transform-style: preserve-3d;
    animation: rotate 30s linear infinite;
}

.globe-sphere {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 70% 30%, #ffffff 0%, rgba(140, 11, 40, 0.05) 50%, rgba(140, 11, 40, 0.2) 100%);
    border: 1px solid rgba(140, 11, 40, 0.2);
    box-shadow: 0 0 30px rgba(140, 11, 40, 0.1);
    background-image:
        linear-gradient(transparent 50%, rgba(140, 11, 40, 0.05) 50%),
        linear-gradient(90deg, transparent 50%, rgba(140, 11, 40, 0.05) 50%);
    background-size: 20px 20px, 20px 20px;
}

.connection-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #8c0b28;
    transform-style: preserve-3d;
    box-shadow: 0 0 10px rgba(140, 11, 40, 0.6);
}

.dot::before {
    content: attr(data-label);
    position: absolute;
    white-space: nowrap;
    color: #333;
    font-size: 10px;
    font-weight: 600;
    transform: translateY(-15px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dot:hover::before {
    opacity: 1;
}

.connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(140, 11, 40, 0.2), rgba(140, 11, 40, 0.6));
    transform-origin: 0 0;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    opacity: 0.6;
}

/* Dot Positions */
.dot-1 {
    transform: translateZ(100px) translateX(80px) translateY(20px);
}

.dot-2 {
    transform: translateZ(-40px) translateX(100px) translateY(60px);
}

.dot-3 {
    transform: translateZ(60px) translateX(-90px) translateY(-30px);
}

.dot-4 {
    transform: translateZ(20px) translateX(20px) translateY(90px);
    background-color: #cc0f3a;
    /* Highlight Beirut */
    box-shadow: 0 0 15px rgba(204, 15, 58, 0.8);
}

.dot-5 {
    transform: translateZ(-80px) translateX(-60px) translateY(-70px);
}

.dot-6 {
    transform: translateZ(20px) translateX(-100px) translateY(60px);
}

/* Line Animations */
.line-1 {
    width: 160px;
    top: 110px;
    left: 110px;
    transform: rotateZ(30deg) rotateY(60deg);
    animation-name: pulse1;
}

.line-2 {
    width: 140px;
    top: 150px;
    left: 110px;
    transform: rotateZ(-40deg) rotateX(30deg);
    animation-name: pulse2;
}

.line-3 {
    width: 120px;
    top: 90px;
    left: 110px;
    transform: rotateZ(120deg) rotateX(20deg);
    animation-name: pulse3;
}

.line-4 {
    width: 180px;
    top: 140px;
    left: 130px;
    transform: rotateZ(210deg) rotateY(-40deg);
    animation-name: pulse4;
}

.line-5 {
    width: 150px;
    top: 110px;
    left: 90px;
    transform: rotateZ(10deg) rotateX(50deg);
    animation-name: pulse5;
}

/* Animations */
@keyframes rotate {
    0% {
        transform: rotateY(0deg) rotateX(20deg);
    }

    100% {
        transform: rotateY(360deg) rotateX(20deg);
    }
}

@keyframes pulse1 {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes pulse2 {

    0%,
    100% {
        opacity: 0.3;
    }

    30% {
        opacity: 0.7;
    }
}

@keyframes pulse3 {

    0%,
    100% {
        opacity: 0.4;
    }

    60% {
        opacity: 0.8;
    }
}

@keyframes pulse4 {

    0%,
    100% {
        opacity: 0.2;
    }

    40% {
        opacity: 0.6;
    }
}

@keyframes pulse5 {

    0%,
    100% {
        opacity: 0.3;
    }

    70% {
        opacity: 0.9;
    }
}

/* Responsive Styles */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .globe-container {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .contact-item {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
    }

    .contact-text {
        text-align: center;
    }

    .globe-container {
        height: 200px;
    }

    .globe {
        width: 180px;
        height: 180px;
    }
}


/* Footer */
footer {
    background-color: #8c0b28;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    /* margin-bottom: 20px; */
}

.footer-logo img {
    height: 60px;
}

.footer-copyright {
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeIn 1s ease forwards;
    opacity: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image {
        order: -1;
        width: 100%;
        height: 300px;
    }
}

/* Special icons for services */
.fa-plane:before {
    content: "✈️";
}

.fa-hotel:before {
    content: "🏨";
}

.fa-map-marked:before {
    content: "🗺️";
}

.fa-passport:before {
    content: "🛂";
}

.fa-envelope:before {
    content: "✉️";
}

.fa-map-marker-alt:before {
    content: "📍";
}

a {
    color: #8c0b28;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    text-decoration: underline;
    color: #5a0d1e;
}