/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #000000;
    --secondary-color: #FFD700;
    --navbar-color: #e1b12c; /* Gold/yellow color for navbar */
    --footer-color: #4a4a4a; /* Grey color for footer */
    --text-color: #333333;
    --light-color: #ffffff;
    --bg-light: #f8f9fa;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Animation classes */
.fade-in-up {
    animation: fadeInUp 1s ease;
}

.fade-in-down {
    animation: fadeInDown 1s ease;
}

.slide-in-left {
    animation: slideInLeft 1s ease;
}

.slide-in-right {
    animation: slideInRight 1s ease;
}

.pulse {
    animation: pulse 2s infinite;
}

.bounce {
    animation: bounce 2s infinite;
}

/* Top Header */
.top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--light-color);
    padding: 5px 0;
    z-index: 1001;
    border-bottom: 1px solid #eee;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.top-header .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo {
    transition: var(--transition);
    margin-left: -5px;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 80px;
    transition: var(--transition);
}

.contact-info {
    display: flex;
    gap: 30px;
    margin-left: auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-2px);
    color: var(--navbar-color);
}

.contact-item i {
    color: var(--navbar-color);
    transition: var(--transition);
}

.contact-item:hover i {
    transform: rotate(360deg);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    background-color: var(--navbar-color);
    color: var(--primary-color);
    padding: 10px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    background-color: rgba(225, 177, 44, 0.95);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-social {
    order: 1; /* Changed from 3 to 1 to move to the left */
    margin-right: auto; /* Changed from margin-left to margin-right */
    margin-left: -2px;
}

.nav-menu {
    display: flex;
    margin-left: auto; /* Changed from margin: 0 auto to margin-left: auto */
    order: 2;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-menu a {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 10px 15px;
    text-transform: uppercase;
    border-radius: 5px;
}

.nav-menu a:hover, 
.nav-menu a.active {
    color: var(--light-color);
    background-color: rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 80%;
}

.hamburger {
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 1002;
    order: 3;
    width: 30px;
    height: 30px;
    padding: 5px;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transition: 0.25s ease-in-out;
}

/* Set the position of each span */
.hamburger span:nth-child(1) {
    top: 5px;
}

.hamburger span:nth-child(2) {
    top: 12px;
}

.hamburger span:nth-child(3) {
    top: 19px;
}

.hamburger:hover span {
    background-color: var(--light-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    position: relative;
    margin-top: 130px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1.5s ease;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInDown 1s ease 0.2s both;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.4s both;
}

.call-btn {
    background-color: var(--navbar-color);
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    text-shadow: none;
    animation: fadeInUp 1s ease 0.6s both;
    border: 2px solid transparent;
}

.call-btn:hover {
    background-color: var(--primary-color);
    color: var(--navbar-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    border: 2px solid var(--navbar-color);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--bg-light);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(225,177,44,0.05) 0%, rgba(0,0,0,0.05) 100%);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-box {
    background-color: var(--light-color);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    border-bottom: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225,177,44,0.1), transparent);
    transition: left 0.6s;
}

.feature-box:hover::before {
    left: 100%;
}

.feature-box:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-bottom: 3px solid var(--secondary-color);
}

.feature-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    transition: var(--transition);
}

.feature-box:hover h3 {
    color: var(--navbar-color);
    transform: scale(1.1);
}

.feature-box p {
    color: #666;
    font-size: 0.9rem;
    transition: var(--transition);
}

.feature-box:hover p {
    color: var(--text-color);
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(248,249,250,0.3) 0%, rgba(225,177,44,0.05) 100%);
}

.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(225,177,44,0.8), rgba(0,0,0,0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--bg-light);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(225,177,44,0.05) 0%, rgba(0,0,0,0.05) 100%);
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.team-member {
    background-color: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    position: relative;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(225,177,44,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover img {
    transform: scale(1.05);
}

.team-info {
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.team-info h3 {
    margin-bottom: 5px;
    color: var(--primary-color);
    transition: var(--transition);
}

.team-member:hover .team-info h3 {
    color: var(--navbar-color);
}

.team-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
    transition: var(--transition);
}

.team-member:hover .team-info p {
    color: var(--text-color);
}

/* Vehicle Items */
.vehicle-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
}

.vehicle-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(225,177,44,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.vehicle-item:hover::before {
    opacity: 1;
}

.vehicle-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.vehicle-item:hover .vehicle-info h3 {
    color: var(--navbar-color);
    transform: scale(1.05);
}

.vehicle-item:hover img {
    transform: scale(1.08);
}

.vehicle-info {
    position: relative;
    z-index: 2;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(248,249,250,0.3) 0%, rgba(225,177,44,0.05) 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    position: relative;
    z-index: 1;
}

.contact-info {
    transition: var(--transition);
}

.contact-info:hover {
    transform: translateX(10px);
}

.contact-info h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details div {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    transition: var(--transition);
    padding: 10px;
    border-radius: 8px;
}

.contact-details div:hover {
    background-color: rgba(225,177,44,0.1);
    transform: translateX(10px);
}

.contact-details i {
    margin-right: 10px;
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.contact-details div:hover i {
    transform: scale(1.2) rotate(360deg);
}

.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.map-container:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    transition: var(--transition);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--footer-color) 0%, #3a3a3a 100%);
    color: var(--light-color);
    padding: 50px 0 20px;
    font-weight: 500;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.5;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    position: relative;
    z-index: 1;
    text-align: left;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 8px;
    text-align: left;
}

.footer-nav a {
    color: var(--light-color);
    transition: all 0.5s ease;
    font-weight: 400;
    font-size: 0.95rem;
    padding: 8px 15px;
    display: block;
    border-left: 3px solid transparent;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.footer-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225,177,44,0.3), transparent);
    transition: left 0.6s;
}

.footer-nav a:hover::before {
    left: 100%;
}

.footer-nav a:hover {
    color: var(--navbar-color);
    border-left: 3px solid var(--navbar-color);
    background-color: rgba(255,255,255,0.1);
    transform: translateX(10px);
}

.footer-contact h3, .footer-nav h3 {
    margin-bottom: 25px;
    color: var(--navbar-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.4rem;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--navbar-color);
    padding-bottom: 10px;
    position: relative;
}

.footer-contact h3::after, .footer-nav h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--light-color);
    transition: width 0.3s ease;
}

.footer-contact h3:hover::after, .footer-nav h3:hover::after {
    width: 100%;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    transition: var(--transition);
    padding: 8px;
    border-radius: 5px;
}

.footer-contact p:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateX(10px);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--navbar-color);
    transition: var(--transition);
}

.footer-contact p:hover i {
    transform: scale(1.2);
}

.footer-bottom {
    margin-top: 30px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 1;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #25D366, #20b358);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.5s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    animation: bounce 1s infinite;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.3) 0%, transparent 70%);
    animation: pulse 2s infinite;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .top-header {
        padding: 5px 0;
    }

    .logo img {
        height: 60px;
    }

    .contact-info {
        flex-direction: column;
        gap: 5px;
        font-size: 0.9rem;
    }

    .navbar {
        top: 80px;
    }
    
    .navbar .container {
        justify-content: flex-end;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        background-color: rgba(225, 177, 44, 0.95);
        width: 100%;
        height: 100vh;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 30px;
        transition: all 0.5s ease;
        box-shadow: 5px 0 20px rgba(0,0,0,0.2);
        text-transform: uppercase;
        margin: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
        width: 100%;
    }
    
    .nav-menu a {
        width: 100%;
        display: block;
        padding: 15px;
        border-radius: 8px;
        border-left: 3px solid transparent;
    }
    
    .nav-menu a:hover {
        border-left: 3px solid var(--primary-color);
    }
    
    .hamburger {
        display: block;
        margin-right: 15px;
    }
    
    .hamburger.active span:nth-child(1) {
        top: 12px;
        transform: rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        left: -60px;
    }
    
    .hamburger.active span:nth-child(3) {
        top: 12px;
        transform: rotate(-45deg);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        margin-top: 130px;
    }
    
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .team-container {
        grid-template-columns: 1fr;
    }
    
    .nav-social {
        position: static;
        margin-left: 10px;
        margin-right: auto;
        z-index: 1003;
    }
}

@media screen and (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Navigation Social Icons */
.nav-social {
    display: flex;
    gap: 3px;
}

.nav-social a {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background-color: transparent;
}

.nav-social a:hover {
    color: var(--light-color);
    transform: translateY(-2px);
    background-color: rgba(0, 0, 0, 0.1);
}

/* Social links styling */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-link i {
    font-size: 1.2rem;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.social-link:hover {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.social-link:hover i {
    transform: scale(1.2);
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-contact .social-links .social-link:nth-child(1) i {
    color: #E1306C;  /* Instagram color */
}

.footer-contact .social-links .social-link:nth-child(2) i {
    color: #4267B2;  /* Facebook color */
}

.contact-details .social-media {
    margin-top: 20px;
    border-top: 1px solid rgba(225,177,44,0.2);
    padding-top: 20px;
}

.contact-details .social-media div {
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.contact-details .social-media div:hover {
    background-color: rgba(225,177,44,0.1);
    transform: translateX(10px);
}

.contact-details .social-media i {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.contact-details .social-media a {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.contact-details .social-media div:hover i {
    transform: scale(1.2);
}

.contact-details .social-media div:hover a {
    color: var(--navbar-color);
}