/* FOOTER STYLES */
        .footer {
            background: #021B1F;

            color: #ffffff;
            position: relative;
            overflow: hidden;
            background-image: url(https://cavernus.buzsoftware.com/images/transparent-background.png);
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
  
        }

        /* Main footer content */
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 20px;
        }

        .footer-main {
            display: flex;
            justify-content: space-between;
            gap: 50px;
            margin-bottom: 40px;
        }

        .footer-contact {
            flex: 1;
        }

        .footer-links,
        .footer-social {
            flex: 1;
        }

        /* Contact section */
        .footer-contact h3 {
            color: #ffffff;
            font-size: 26px;
            font-weight: 500;
            margin-bottom: 25px;
            position: relative;
            font-family: 'diphylleiaregular';

        }

        .footer-contact h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 1px;
            background: #ffffff;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            color: #ffffff;
            font-size: 16px;
            line-height: 1.5;
        }

        .contact-item strong {
            color: #ffffff;
            min-width: 80px;
            margin-right: 10px;
            font-weight: 300 !important;
        }
        
        .contact-item a {
         color: #ffffff !important;
         transition: color 0.3s ease, padding-left 0.3s ease !important;
         display: block;
        }
        
        .contact-item a:hover {
        color: #cccccc !important;
        }

        /* Quick links section */
        .footer-links h3 {
            color: #ffffff;
            font-size: 26px;
            font-weight: 500;
            margin-bottom: 25px;
            position: relative;
            font-family: 'diphylleiaregular';

        }

        .footer-links h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 1px;
            background: #ffffff;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease, padding-left 0.3s ease;
            display: block;
        }

        .footer-links ul li a:hover {
            color: #cccccc;
            padding-left: 5px;
        }

        /* Social media section */
        .footer-social h3 {
            color: #ffffff;
            font-size: 26px;
            font-weight: 500;
            margin-bottom: 20px;
            position: relative;
            font-family: 'diphylleiaregular';

        }

        .footer-social h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 1px;
            background: #ffffff;
        }

        .social-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            padding-top: 10px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #cccccc;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            font-size: 18px;
        }

        .social-links a:hover {
            background: #cccccc;
            color: white;
            transform: translateY(-3px);
        }

        /* Footer bottom */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 30px 0;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
        }

        .footer-logo img {
            height: 40px;
            margin-right: 15px;
            opacity: 0.9;
        }

        .footer-logo span {
            font-size: 18px;
            font-weight: 600;
            color: #ffffff;
        }

        .copyright {
            color: #ffffff;
            font-size: 15px;
        }
        
        .copyright a {
            color: #ffffff !important;
        }

        /* MOBILE RESPONSIVE */
        @media (max-width: 968px) {
            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .footer-contact {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                padding: 40px 15px;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-contact {
                grid-column: 1;
            }

            .footer-bottom-content {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }

            .contact-item {
                flex-direction: column;
                align-items: flex-start;
                margin-bottom: 20px;
            }

            .contact-item strong {
                margin-bottom: 5px;
                min-width: auto;
            }
        }

        @media (max-width: 480px) {
            .footer-main {
                gap: 25px;
            }

            .footer-logo {
                flex-direction: column;
                gap: 10px;
            }

            .footer-logo img {
                margin-right: 0;
            }
        }      