/* ============================================
   FOOTER STYLES - PREMIUM MODERN DESIGN
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Base Footer Styles */
.site-footer {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    overflow: hidden;
    position: relative;
    background: #0a1528;
}

/* Floating decorative elements */
.site-footer::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(78, 175, 228, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: float 20s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.site-footer::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 8%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: float 25s ease-in-out infinite reverse;
    z-index: 0;
    pointer-events: none;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* ============================================
   ENQUIRIES AND BOOKINGS SECTION
   Premium floating card design
   ============================================ */
.footer-enquiries-section {
    background: linear-gradient(135deg, #121c5a 0%, #1a2a6b 30%, #121c5a 100%);
    padding: 60px 70px;
    position: relative;
    overflow: visible;
    margin: 0 auto;
    max-width: 1400px;
    border-radius: 24px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(78, 175, 228, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-bottom: -100px;
    margin-top: 40px;
    z-index: 10;
    backdrop-filter: blur(20px);
    animation: fadeInUp 0.8s ease-out;
    border: 1px solid rgba(78, 175, 228, 0.15);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-enquiries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(78, 175, 228, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 188, 212, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(19, 28, 90, 0.3) 0%, transparent 70%);
    border-radius: 24px;
    pointer-events: none;
    z-index: 1;
}

.footer-enquiries-section::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(78, 175, 228, 0.3), rgba(0, 188, 212, 0.2), rgba(78, 175, 228, 0.3));
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-enquiries-section:hover::after {
    opacity: 1;
}

/* Main Footer Section */
.footer-main {
    background: linear-gradient(180deg, #0a1528 0%, #121c5a 100%);
    padding: 140px 0 50px;
    position: relative;
    z-index: 2;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(78, 175, 228, 0.3) 20%, 
        rgba(78, 175, 228, 0.5) 50%, 
        rgba(78, 175, 228, 0.3) 80%, 
        transparent 100%);
    z-index: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.enquiries-wrapper {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.enquiries-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    padding: 20px 0;
}

.enquiries-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.05;
    margin: 0;
    color: #ffffff;
    text-shadow: 
        0 2px 20px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(78, 175, 228, 0.2);
    text-align: left;
    letter-spacing: -3px;
    position: relative;
    animation: slideInLeft 0.8s ease-out 0.3s both;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ffffff;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.enquiries-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4eafe4 0%, #00bcd4 100%);
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.8s both;
    box-shadow: 0 0 20px rgba(78, 175, 228, 0.5);
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

/* Form Styles */
.enquiries-form {
    position: relative;
    z-index: 2;
    animation: fadeInRight 0.8s ease-out 0.4s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-row textarea {
    grid-column: 1 / -1;
}

.form-row.submit-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 32px;
    gap: 0;
}

.enquiries-form input,
.enquiries-form textarea {
    width: 100%;
    padding: 20px 28px;
    background: rgba(10, 21, 40, 0.7);
    border: 2px solid rgba(78, 175, 228, 0.25);
    border-radius: 14px;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    backdrop-filter: blur(10px);
    position: relative;
}

.enquiries-form input::placeholder,
.enquiries-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.enquiries-form input:hover,
.enquiries-form textarea:hover {
    background: rgba(10, 21, 40, 0.85);
    border-color: rgba(78, 175, 228, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 175, 228, 0.15);
}

.enquiries-form input:focus,
.enquiries-form textarea:focus {
    outline: none;
    border-color: #4eafe4;
    background: rgba(10, 21, 40, 0.95);
    box-shadow: 
        0 0 0 4px rgba(78, 175, 228, 0.2),
        0 10px 30px rgba(78, 175, 228, 0.25);
    transform: translateY(-2px);
}

.enquiries-form input:focus::placeholder,
.enquiries-form textarea:focus::placeholder {
    opacity: 0.4;
    transform: translateX(5px);
}

/* Form Group and Error Messages */
.form-group {
    position: relative;
}

.enquiries-form .error-message {
    display: none;
    color: #ff6b6b;
    font-size: 13px;
    margin-top: 10px;
    font-weight: 500;
    animation: shake 0.5s ease-out;
    padding-left: 4px;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-6px); }
    20%, 40%, 60%, 80% { transform: translateX(6px); }
}

.enquiries-form .error-message:not(:empty) {
    display: block;
}

.enquiries-form input.error-shake,
.enquiries-form textarea.error-shake {
    animation: shake 0.5s ease-out;
    border-color: #ff6b6b !important;
    background: rgba(255, 107, 107, 0.1) !important;
}

.form-message {
    display: none;
    padding: 20px 28px;
    border-radius: 14px;
    margin-top: 24px;
    font-weight: 500;
    font-size: 15px;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.form-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 2px solid #4caf50;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.form-message.error {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4eafe4 0%, #00bcd4 50%, #4eafe4 100%);
    background-size: 200% 200%;
    border: none;
    padding: 20px 48px;
    border-radius: 14px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(78, 175, 228, 0.4),
        0 0 0 0 rgba(78, 175, 228, 0.5);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    animation: fadeInUp 0.6s ease-out 0.9s both;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(78, 175, 228, 0.5),
        0 0 0 4px rgba(78, 175, 228, 0.2);
}

.submit-btn:active {
    transform: translateY(-2px) scale(1);
    box-shadow: 0 10px 30px rgba(78, 175, 228, 0.4);
}

.submit-btn .btn-text,
.submit-btn .btn-loader {
    display: inline-block;
    position: relative;
    z-index: 2;
}

.submit-btn .btn-loader {
    display: none;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loader {
    display: inline-block;
    animation: pulse 1.5s ease-in-out infinite;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

/* Enhanced grid with subtle glow */
.footer-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(ellipse at center, rgba(78, 175, 228, 0.03) 0%, transparent 70%);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.footer-grid:hover::before {
    opacity: 1;
}

.footer-column {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

/* Brand Column */
.footer-brand {
    position: relative;
}

.footer-logo-link {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 12px rgba(78, 175, 228, 0.2));
}

.footer-logo-link:hover .footer-logo {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 8px 20px rgba(78, 175, 228, 0.4));
}

.footer-description {
    margin: 24px 0;
}

.footer-description {
    position: relative;
}

.footer-description p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.footer-description::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4eafe4 0%, transparent 100%);
    border-radius: 2px;
    opacity: 0.6;
}

/* Licensed & Insured Badges */
.footer-badges {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    margin: 28px 0;
    flex-wrap: wrap;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: 2px solid;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.footer-badge:hover::before {
    left: 100%;
}

.footer-badge svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
    transition: transform 0.3s ease;
}

.footer-badge:hover svg {
    transform: scale(1.15) rotate(5deg);
}

.footer-badge-licensed {
    background: linear-gradient(135deg, #347aa8 0%, #2a5f87 100%);
    border-color: rgba(78, 175, 228, 0.4);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(52, 122, 168, 0.3);
}

.footer-badge-licensed:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 6px 20px rgba(52, 122, 168, 0.4),
        0 0 15px rgba(78, 175, 228, 0.3);
    border-color: rgba(78, 175, 228, 0.6);
}

.footer-badge-licensed svg {
    fill: #ffffff;
}

.footer-badge-insured {
    background: linear-gradient(135deg, #4eafe4 0%, #3a8fc4 100%);
    border-color: rgba(78, 175, 228, 0.5);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(78, 175, 228, 0.3);
}

.footer-badge-insured:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 6px 20px rgba(78, 175, 228, 0.4),
        0 0 15px rgba(78, 175, 228, 0.3);
    border-color: rgba(78, 175, 228, 0.7);
}

.footer-badge-insured svg {
    fill: #ffffff;
}

/* Social Icons */
.footer-social-icons {
    display: flex;
    gap: 14px;
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

.footer-social-icons::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(78, 175, 228, 0.05) 0%, transparent 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.footer-social-icons:hover::before {
    opacity: 1;
}

.footer-social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(78, 175, 228, 0.2);
    border-radius: 12px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer-social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(78, 175, 228, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.footer-social-icon:hover::before {
    width: 100px;
    height: 100px;
}

.footer-social-icon svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: #ffffff;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.footer-social-icon:hover {
    background: linear-gradient(135deg, #4eafe4 0%, #00bcd4 100%);
    border-color: #4eafe4;
    transform: translateY(-4px) rotate(5deg) scale(1.05);
    box-shadow: 
        0 8px 24px rgba(78, 175, 228, 0.4),
        0 0 20px rgba(78, 175, 228, 0.3);
}

.footer-social-icon:hover svg {
    transform: scale(1.1);
    fill: #ffffff;
}

/* Column Headings */
.footer-column h3 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4eafe4 0%, #00bcd4 100%);
    border-radius: 2px;
    transition: width 0.4s ease;
    box-shadow: 0 0 10px rgba(78, 175, 228, 0.5);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(78, 175, 228, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(78, 175, 228, 0.8);
    }
}

.footer-column:hover h3::after {
    width: 80px;
    box-shadow: 0 0 15px rgba(78, 175, 228, 0.7);
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 14px;
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s ease;
}

.footer-menu li::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    color: #4eafe4;
    transition: all 0.3s ease;
    font-weight: 700;
}

.footer-menu li:hover::before {
    opacity: 1;
    left: -16px;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-menu li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4eafe4 0%, #00bcd4 100%);
    transition: width 0.3s ease;
}

.footer-menu li a:hover {
    color: #4eafe4;
    transform: translateX(6px);
}

.footer-menu li a:hover::after {
    width: 100%;
}

/* Contact Cards */
.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(78, 175, 228, 0.2);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(78, 175, 228, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(78, 175, 228, 0.5);
    transform: translateY(-4px) scale(1.01);
    box-shadow: 
        0 8px 24px rgba(78, 175, 228, 0.25),
        0 0 20px rgba(78, 175, 228, 0.15);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(78, 175, 228, 0.2) 0%, rgba(0, 188, 212, 0.2) 100%);
    border: 2px solid rgba(78, 175, 228, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: linear-gradient(135deg, rgba(78, 175, 228, 0.3) 0%, rgba(0, 188, 212, 0.3) 100%);
    border-color: rgba(78, 175, 228, 0.5);
    transform: scale(1.1) rotate(5deg);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: #4eafe4;
    display: block;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon svg {
    fill: #00bcd4;
    transform: scale(1.1);
}

.contact-info {
    flex: 1;
}

.contact-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.contact-value {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.contact-value:hover {
    color: #4eafe4;
    transform: translateX(3px);
}

.contact-value-text {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Footer Info Cards */
.footer-info-cards {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-info-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(78, 175, 228, 0.15);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
}

.footer-info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(78, 175, 228, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(78, 175, 228, 0.15);
}

.footer-info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(78, 175, 228, 0.15) 0%, rgba(0, 188, 212, 0.15) 100%);
    border: 1px solid rgba(78, 175, 228, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #4eafe4;
    transition: all 0.3s ease;
}

.footer-info-card:hover .footer-info-icon {
    background: linear-gradient(135deg, rgba(78, 175, 228, 0.25) 0%, rgba(0, 188, 212, 0.25) 100%);
    border-color: rgba(78, 175, 228, 0.4);
    transform: scale(1.1);
}

.footer-info-content {
    flex: 1;
}

.footer-info-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 6px 0;
    font-weight: 600;
}

.footer-info-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Newsletter Section */
.stay-updated-section {
    margin-top: 40px;
}

.newsletter-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    align-items: stretch;
    flex-direction: column;
}

.newsletter-input {
    flex: 1;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(78, 175, 228, 0.25);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: #4eafe4;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(78, 175, 228, 0.15);
}

.newsletter-submit-btn {
    padding: 16px 28px;
    background: linear-gradient(135deg, #4eafe4 0%, #00bcd4 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(78, 175, 228, 0.3);
}

.newsletter-submit-btn:hover {
    background: linear-gradient(135deg, #00bcd4 0%, #4eafe4 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(78, 175, 228, 0.4);
}

.newsletter-submit-btn:active {
    transform: translateY(0);
}

.newsletter-submit-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.newsletter-submit-btn:hover i {
    transform: translateX(3px);
}

/* Copyright Section */
.footer-copyright {
    background: #0a1528;
    padding: 30px 0;
    position: relative;
    border-top: 1px solid rgba(78, 175, 228, 0.15);
    overflow: hidden;
}

.footer-copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(78, 175, 228, 0.3) 20%, 
        rgba(78, 175, 228, 0.5) 50%, 
        rgba(78, 175, 228, 0.3) 80%, 
        transparent 100%);
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.copyright-left {
    flex: 1;
    min-width: 250px;
}

.copyright-right {
    text-align: right;
    flex-shrink: 0;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0 0 8px 0;
    line-height: 1.6;
}

.copyright-developer {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
}

.copyright-developer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.copyright-developer a:hover {
    color: #4eafe4;
    text-decoration: underline;
}

.copyright-links {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0 0 8px 0;
    line-height: 1.6;
}

.copyright-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.copyright-links a:hover {
    color: #4eafe4;
    text-decoration: underline;
}

.copyright-links .separator {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 10px;
}

.copyright-info {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
}

.footer-copyright strong {
    color: #ffffff;
    font-weight: 600;
}

/* Mobile Action Buttons */
.footer-mobile-buttons {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 0;
    gap: 0;
    grid-template-columns: 50% 50%;
    width: 100%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.footer-mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    min-height: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-mobile-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.footer-mobile-btn:active::before {
    left: 100%;
}

.footer-mobile-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.footer-mobile-call {
    background: linear-gradient(135deg, #121c5a 0%, #1a2a6b 100%);
    color: #ffffff;
}

.footer-mobile-call:hover {
    background: linear-gradient(135deg, #1a2a6b 0%, #121c5a 100%);
}

.footer-mobile-quote {
    background: linear-gradient(135deg, #4eafe4 0%, #00bcd4 100%);
    color: #ffffff;
}

.footer-mobile-quote:hover {
    background: linear-gradient(135deg, #00bcd4 0%, #4eafe4 100%);
}

.footer-mobile-quote span {
    position: relative;
    z-index: 1;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
        gap: 40px;
    }
    
    .footer-enquiries-section {
        padding: 50px 60px;
        max-width: 100%;
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 1024px) {
    .enquiries-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .enquiries-content {
        justify-content: center;
        text-align: center;
    }
    
    .enquiries-title {
        font-size: 56px;
        text-align: center;
        letter-spacing: -2px;
    }
    
    .enquiries-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-enquiries-section {
        padding: 45px 50px;
    }
}

@media (max-width: 768px) {
    .footer-enquiries-section {
        padding: 40px 30px;
        margin: 0 15px;
        margin-bottom: -80px;
        border-radius: 20px;
    }
    
    .enquiries-wrapper {
        gap: 40px;
    }
    
    .enquiries-title {
        font-size: 42px;
        letter-spacing: -1.5px;
    }
    
    .enquiries-title::after {
        width: 80px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .enquiries-form input,
    .enquiries-form textarea {
        padding: 18px 24px;
        font-size: 15px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 18px 36px;
        font-size: 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-submit-btn {
        width: 100%;
    }
    
    .contact-card {
        padding: 18px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .footer-mobile-buttons {
        display: grid;
    }
    
    .footer-copyright {
        padding-bottom: 60px;
    }
    
    .copyright-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .copyright-right {
        text-align: left;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-enquiries-section {
        padding: 32px 24px;
        margin: 0 12px;
        margin-bottom: -70px;
        border-radius: 16px;
    }
    
    .enquiries-title {
        font-size: 36px;
        letter-spacing: -1px;
    }
    
    .enquiries-title::after {
        width: 60px;
    }
    
    .enquiries-form input,
    .enquiries-form textarea {
        padding: 16px 20px;
        font-size: 14px;
        border-radius: 12px;
    }
    
    .submit-btn {
        padding: 16px 28px;
        font-size: 15px;
    }
    
    .footer-grid {
        gap: 35px;
    }
    
    .footer-logo {
        max-width: 160px;
    }
    
    .footer-badges {
        gap: 10px;
    }
    
    .footer-badge {
        padding: 8px 14px;
        font-size: 11px;
    }
    
    .footer-social-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-card {
        padding: 16px;
    }
    
    .contact-icon {
        width: 48px;
        height: 48px;
    }
    
    .footer-mobile-btn {
        padding: 12px 16px;
        font-size: 14px;
        min-height: 48px;
    }
    
    .footer-mobile-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #4eafe4;
    outline-offset: 2px;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Premium hover effects for footer sections */
.footer-column {
    position: relative;
}

.footer-column::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(78, 175, 228, 0.05), rgba(0, 188, 212, 0.05));
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.footer-column:hover::before {
    opacity: 1;
}

/* Enhanced logo glow effect */
.footer-logo {
    position: relative;
}

.footer-logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(78, 175, 228, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.footer-logo:hover::after {
    opacity: 1;
}

/* Enhanced menu item animations */
.footer-menu li {
    position: relative;
}

.footer-menu li::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #4eafe4 0%, transparent 100%);
    transition: width 0.3s ease;
}

.footer-menu li:hover::after {
    width: 30px;
}

/* Premium gradient text for title */
.enquiries-title {
    position: relative;
}

/* Enhanced form input glow */
.enquiries-form input:focus,
.enquiries-form textarea:focus {
    animation: inputGlow 2s ease-in-out infinite;
}

@keyframes inputGlow {
    0%, 100% {
        box-shadow: 
            0 0 0 4px rgba(78, 175, 228, 0.2),
            0 10px 30px rgba(78, 175, 228, 0.25);
    }
    50% {
        box-shadow: 
            0 0 0 4px rgba(78, 175, 228, 0.3),
            0 10px 30px rgba(78, 175, 228, 0.35);
    }
}

/* Enhanced button pulse effect */
.submit-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.submit-btn:active::after {
    width: 300px;
    height: 300px;
}

/* Premium badge hover effects */
.footer-badge {
    position: relative;
    overflow: hidden;
}

.footer-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.footer-badge:hover::after {
    width: 200px;
    height: 200px;
}

/* Enhanced social icon animations */
.footer-social-icon {
    position: relative;
}

.footer-social-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 12px;
    background: rgba(78, 175, 228, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.footer-social-icon:hover::after {
    width: 100%;
    height: 100%;
}

/* Premium contact card effects */
.contact-card {
    position: relative;
}

.contact-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(78, 175, 228, 0.1));
    transition: width 0.4s ease;
    z-index: 0;
}

.contact-card:hover::after {
    width: 100%;
}

/* Enhanced newsletter button */
.newsletter-submit-btn {
    position: relative;
    overflow: hidden;
}

.newsletter-submit-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.5s ease;
}

.newsletter-submit-btn:hover::before {
    left: 100%;
}

/* Premium scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .footer-column {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s ease-out forwards;
    }
    
    .footer-column:nth-child(1) { animation-delay: 0.1s; }
    .footer-column:nth-child(2) { animation-delay: 0.2s; }
    .footer-column:nth-child(3) { animation-delay: 0.3s; }
    .footer-column:nth-child(4) { animation-delay: 0.4s; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced mobile button effects */
.footer-mobile-btn {
    position: relative;
    overflow: hidden;
}

.footer-mobile-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.footer-mobile-btn:active::after {
    width: 200px;
    height: 200px;
}

/* Premium divider line */
.footer-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(78, 175, 228, 0.2) 20%, 
        rgba(78, 175, 228, 0.4) 50%, 
        rgba(78, 175, 228, 0.2) 80%, 
        transparent 100%);
    z-index: 1;
}

/* Enhanced copyright section */
.footer-copyright {
    position: relative;
}

.footer-copyright::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(78, 175, 228, 0.2) 20%, 
        rgba(78, 175, 228, 0.3) 50%, 
        rgba(78, 175, 228, 0.2) 80%, 
        transparent 100%);
}

/* Better text contrast */
.footer-description p,
.footer-menu li a,
.newsletter-description {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Enhanced focus states */
.footer-menu li a:focus,
.contact-value:focus,
.newsletter-input:focus,
.newsletter-submit-btn:focus {
    outline: 2px solid #4eafe4;
    outline-offset: 3px;
    border-radius: 4px;
}

/* Premium loading state for submit button */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

