:root {
    --primary-color: #D4AF37; /* Gold */
    --dark-bg: #000; /* Black */
    --card-bg: #000; /* Dark Card Background */
    --text-color: #FFFFFF; /* White */
    --hover-color: #B8960C; /* Gold Hover */
    --border-color: rgba(255, 255, 255, 0.1); /* Subtle Border */
    --transition-speed: 0.3s;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0; 
    box-sizing: border-box;
}

body {
    font-family: 'serif';
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    animation: fadeIn 0.5s ease-out;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(0, 0, 0, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 2rem;
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.nav-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.cta-button {
    background-color: #D4AF37;
    color: var(--dark-bg);
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    position: center;
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.cta-button:hover {
    background-color: var(--hover-color);
    transform: scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 2px 0;
    transition: 0.4s;
}

/* Footer */
.main-footer {
    background-color: var(--card-bg);
    color: var(--text-color);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input[type="email"] {
    flex-grow: 1;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    background-color: transparent;
    color: var(--text-color);
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.footer-section i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.social-links a:hover {
    color: var(--hover-color);
    transform: scale(1.1);
}

/* Mobile Footer */
.mobile-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--card-bg);
    border-top: 1px solid var(--border-color);
    padding: 10px 0;
    z-index: 1000;
}

.footer-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-size: 12px;
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.nav-item i {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.nav-item:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Service Detail Section */
.service-detail-section {
    padding: 60px 30px;
    background-color: black;
}

.service-detail-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeIn 1s ease-out 0.2s forwards;
    opacity: 0;
}

.service-detail-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #222;
}

/* Country List */
.country-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    animation: fadeIn 1s ease-out 0.4s forwards;
    opacity: 0;
}

.country-list li a {
    display: block;
    padding: 15px;
    background-color: #fff;
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: #000;
    border-radius: 8px;
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.country-list li a:hover {
    background-color: #f9f9f9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Contact Form Section */
#contact-form-section {
    padding: 50px 20px;
    background-color: #000;
    text-align: center;
    animation: fadeIn 1s ease-out 0.6s forwards;
    opacity: 0;
}

#contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

textarea {
    resize: vertical;
}

button[type="submit"] {
    background-color: #d4af37;
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

button[type="submit"]:hover {
    background-color: #b08d2c;
    transform: translateY(-2px);
}

/* Contact and About Sections */
#contact, #about {
    padding: 50px 20px;
    text-align: center;
}

/* Fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--dark-bg);
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 0.5rem 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-us-content {
        flex-direction: column;
    }

    .about-us-image, .about-us-text {
        width: 100%;
    }

    .about-us-text {
        text-align: center;
    }

    .about-us h3 {
        font-size: 2rem;
    }

    .services-grid, .features-grid, .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-section {
        width: 100%;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input[type="email"],
    .newsletter-form button {
        width: 100%;
    }

    .main-footer {
        display: none;
    }
    
    .mobile-footer {
        display: block;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

