        /* CSS Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Inter', 'Segoe UI', Roboto, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #2d2d2d;
            background-color: #ffffff;
            overflow-x: hidden;
        }

        /* San Francisco Font Classes */
.sf-display-bold {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif;
    font-weight: 700;
}

.sf-text-semibold {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif;
    font-weight: 600;
}

.sf-text-medium {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif;
    font-weight: 500;
}

.sf-text-regular {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif;
    font-weight: 400;
}
        
        /* Header Styles */
        .header {
            background: #ffffff;
            padding: 16px 0;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .logo {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 20px;
    color: #1f3bb3;
    margin-top: 7px;
}

.logo-image {
    height: 42px;
    width: auto;
    margin-right: 12px;
}
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 32px;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: #2d2d2d;
            font-weight: 500;
            transition: color 0.2s;
        }
        
        .nav-menu a:hover {
            color: #1f3bb3;
        }
        
        .language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
}

.nav-menu a.active,
.footer-column ul li a.active {
    color: #1f3bb3 !important;
}

 /* Flag Icons */
.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    position: relative;
}

.flag-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}

/* Language Dropdown */
.language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid 
#E5E7EB;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    display: none;
}

.language-selector.open .language-dropdown {
    display: block;
}

.language-option {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.language-option:hover {
    background: 
#F3F4F6;
}

/* Country Flag Variations */
.flag-uk { 
        background: 
        linear-gradient(90deg, transparent 40%, #C8102E 40%, #C8102E 60%, transparent 60%),
        linear-gradient(0deg, transparent 40%, #C8102E 40%, #C8102E 60%, transparent 60%),
        #ffffff
}
.flag-portugal { background: linear-gradient(to right, 
#006600 40%, 
#FF0000 40%); }
.flag-germany { background: linear-gradient(to bottom, #000 33%, 
#FF0000 33%, 
#FF0000 66%, 
#FFCC00 66%); }
.flag-spain { background: linear-gradient(to bottom, 
#AA151B 25%, 
#F1BF00 25%, 
#F1BF00 75%, 
#AA151B 75%); }
.flag-belgium { background: linear-gradient(to right, #000 33%, 
#FFD700 33%, 
#FFD700 66%, 
#FF0000 66%); }

/* Contact Hero Section */
.contact-hero {
    background: #1f3bb3;
    color: white;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

.contact-hero-content {
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.contact-hero-text {
    padding-right: 40px;
    padding-top: 60px;
    width: 80%;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    width: 80%;
}

.contact-hero p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 700px;
}

/* Floating Contact Form */
.floating-contact-form {
    position: absolute;
    right: 60px;
    top: 250px; /* Adjust this to move up/down */
    width: 450px;
    z-index: 10;
}

.contact-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #E5E7EB;
    border-radius: 25px;
    font-size: 16px;
    color: #2d2d2d;
    background: white;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: #1f3bb3;
}

.form-input::placeholder, .form-textarea::placeholder {
    color: #9CA3AF;
    font-weight: 500;
}


.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
}
select.form-select{color: #2d2d2d !important;}
.form-textarea {
    min-height: 180px;
    resize: vertical;
    border-radius: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.file-upload {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.file-upload-input {
    position: absolute;
    left: -9999px;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid #E5E7EB;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    color: #595959;
    transition: border-color 0.3s ease;
    background: white;
}

.file-upload-label:hover {
    background-color: #1f3bb3;
    color: white;
}

.submit-btn {
    background: #1f3bb3;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #1a328a;
}

/* Get in Touch Section - Match Contact Us styling */
.get-in-touch-section {
    background: white;
    padding: 40px 0;
}

.get-in-touch-section h2 {
    font-size: 32px; /* CHANGED: from 28px to 32px */
    font-weight: 700; /* CHANGED: from 400 to 700 */
    color: #2d2d2d;
    margin-bottom: 8px; /* CHANGED: from 8px to 16px */
    position: relative;
}

.get-in-touch-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 55%;
    height: 2px;
    background: #E5E7EB;
}

.get-in-touch-section h2 .highlight {
    color: #1f3bb3;
    font-weight: 700;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0px 0px;
    margin-top: 40px;
    max-width: 60%;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 10px; /* CHANGED: from 20px to 10px to match office-item */
}

.contact-icon {
    width: 30px;
    height: 30px;
    background: #1f3bb3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
    color: white;
}

.contact-details h3 {
    font-size: 22px; /* CHANGED: from 18px to 22px */
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 4px; /* CHANGED: from 8px to 4px */
}

.contact-details p {
    font-size: 12px;
    color: #595959;
    margin: 0;
}

.contact-details .contact-info {
    font-size: 12px;
    color: #595959; /* CHANGED: from #2d2d2d to #595959 */
    font-weight: 400; /* CHANGED: from 500 to 400 */
    line-height: 1.4; /* ADDED: to match office-address */
}

/* Office Locations Section */
.office-locations-section {
    background: white;
    padding: 0px 0px;
}

.office-locations-section h2 {
    font-size: 28px;
    font-weight: 400;
    color: 
#2d2d2d;
    margin-bottom: 8px;
    position: relative;
}

.office-locations-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 55%;
    height: 2px;
    background: 
#E5E7EB;
}

.office-locations-section h2 .highlight {
    color: 
#1f3bb3;
    font-weight: 700;
}

.offices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0px 0px;
    margin-top: 40px;
    max-width: 60%;
    margin-bottom: 80px;
}

.office-item:nth-child(2) { /* Belgian office */
    margin-left: -10px; /* Move it closer to Dublin */
}

.office-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.office-icon {
    width: 30px;
    height: 30px;
    background: 
#1f3bb3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.office-icon svg {
    width: 18px;
    height: 18px;
    color: white;
}

.office-details h3 {
    font-size: 22px;
    font-weight: 700;
    color: 
#2d2d2d;
    margin-bottom: 4px;
}

.office-details .office-type {
    font-size: 12px;
    color: 
#595959;
    margin-bottom: 12px;
}

.office-details .office-address {
    font-size: 12px;
    color: 
#595959;
    line-height: 1.4;
    margin-bottom: 16px;
}

.get-directions-btn {
    background: white;
    color: 
#1f3bb3;
    border: 1px solid 
#1f3bb3;
    padding: 8px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.get-directions-btn:hover {
    background: 
#1f3bb3;
    color: white;
}

 /* Social Icons Fixed */
        .social-fixed {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 50;
        }
        
        .social-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            transition: transform 0.2s;
        }
        
        .social-icon:hover {
            transform: scale(1.1);
        }
        
        .social-icon.linkedin {
            background: #0077B5;
        }
        
        .social-icon.instagram {
            background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
        }
        
        .social-icon.facebook {
            background: #1877F2;
        }

        .social-icon.tiktok {
            background: #000000;
        }

        /* Newsletter Section */
.newsletter-section {
    background: #f0f0f0;
    padding: 60px 0;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 32px;
    font-weight: 400;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.newsletter-content h2 .highlight {
    font-weight: 700; /* Bold for "Forward" */
}

.newsletter-content .highlight {
    color: #1f3bb3;
}

.newsletter-content p {
    font-size: 16px;
    color: #595959;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/*.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto 20px;
}*/
.newsletter-form .ajax-newsletter{
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto 20px;
}
.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
}

.newsletter-btn {
    background: #1f3bb3;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
}

.newsletter-disclaimer {
    font-size: 12px;
    color: #9CA3AF;
    margin-top: 15px;
    white-space: nowrap;
}

.forward-text {
    display: inline-block;
}

@keyframes slideRight {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(10px);
    }
}

/* Footer */
.footer {
    background: #1f3bb3;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    flex: 1;
    margin-left: -20px; /* Move more to the left */
}

.footer-logo {
    display: flex;
    align-items: flex-start; /* Changed from center to flex-start */
    gap: 2px;
    margin-bottom: 12px;
    margin-top: -20px; /* Move up to align with headers */
}

.logo-img {
    width: 280px;
    height: 120px;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
}

.say-hello-btn {
    display: inline-block;
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 4px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 8px;
    margin-left: 25px;
}

.footer-tagline {
    font-size: 22px;
    color: #ffffff;
    font-weight: 700;
    margin-left: 25px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #B5BDDB;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;  
}

.footer-newsletter {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

 .footer-newsletter input {
    padding: 8px 12px;
    border: 1px solid 
#B5BDDB;
    border-radius: 4px 0 0 4px;
    background: white;
    color: 
#2d2d2d;
    font-size: 12px;
}

.footer-newsletter input::placeholder {
    color: 
#9CA3AF;  /* Light gray placeholder text */
}

.footer-newsletter button {
    background: 
#1f3bb3;
    color: white;
    border: 1px solid white;
    padding: 8px 16px;
    border-radius: 0 4px 4px 0;  /* Only right side rounded */
    font-size: 12px;
    font-weight: 500;
}

.footer-help h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.footer-help p {
    font-size: 12px;
    color: #B5BDDB;
    font-weight: 700;
}

.footer-help a {
    color: inherit;
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
}

/* Get in Touch Section - Match Contact Us styling */
.get-in-touch-section {
    background: white;
    padding: 40px 0;
}

.get-in-touch-section h2 {
    font-size: 32px; /* CHANGED: from 28px to 32px */
    font-weight: 700; /* CHANGED: from 400 to 700 */
    color: #2d2d2d;
    margin-bottom: 8px; /* CHANGED: from 8px to 16px */
    position: relative;
}

.get-in-touch-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 55%;
    height: 2px;
    background: #E5E7EB;
}

.get-in-touch-section h2 .highlight {
    color: #1f3bb3;
    font-weight: 700;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px 0px;
    margin-top: 40px;
    max-width: 60%;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 10px; /* CHANGED: from 20px to 10px to match office-item */
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: #1f3bb3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.contact-details h3 {
    font-size: 22px; /* CHANGED: from 18px to 22px */
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 4px; /* CHANGED: from 8px to 4px */
}

.contact-details p {
    font-size: 18px;
    color: #595959;
    margin: 0;
}

.contact-details .contact-info {
    font-size: 18px;
    color: #595959; /* CHANGED: from #2d2d2d to #595959 */
    font-weight: 400; /* CHANGED: from 500 to 400 */
    line-height: 1.4; /* ADDED: to match office-address */
}

.contact-info a {
   color: inherit;
   text-decoration: none;
}
/*newsletter message alignments*/
.newsletter-form .ajax-newsletter{flex-wrap:wrap;}
.newsletter-form .ajax-newsletter .alert-success, .newsletter-form .ajax-newsletter .alert-danger{padding:10px; font-size:14px; width:100%; text-align:left;}
.footer-newsletter .ajax-newsletter{display:inline-block !important;}
.footer-newsletter .ajax-newsletter .alert-success, .footer-newsletter .ajax-newsletter .alert-danger{margin-top:10px; padding:10px; font-size:14px;}


/* Mobile Responsive Design */

@media (max-width: 1199px) {
.contact-methods{display: flex; max-width: 50%; flex-wrap: wrap;}
.contact-method{margin-right: 20px;}
.offices-grid{display: flex; max-width: 50%; flex-wrap: wrap;}
.offices-grid .office-item{margin-right: 20px;}
}
@media (max-width: 991px) {
 .contact-methods{max-width:100%;}
   .offices-grid{max-width:100%;}
 .floating-contact-form {
        position: inherit !important;
        margin: 40px auto 40px;
   }
}
@media (max-width: 768px) {
            .contact-hero {
                padding: 60px 0;
                min-height: auto;
            }

            .contact-hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .contact-hero-text {
                padding-right: 0;
            }

            .contact-hero h1 {
                font-size: 32px;
            }

            .contact-hero p {
                font-size: 16px;
                max-width: 100%;
            }

            .contact-form {
                padding: 30px;
            }

            .form-row {
                flex-direction: column;
                gap: 20px;
            }
    .contact-methods,
    .offices-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .get-in-touch-section,
    .office-locations-section {
        padding: 60px 0;
    }
    
    .get-in-touch-section h2,
    .office-locations-section h2 {
        font-size: 28px;
    }
}
/* Mobile Menu Button (hidden by default, shown on mobile) */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #2d2d2d;
    transition: all 0.3s ease;
}

/* Large Mobile Devices (430px and below) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .mobile-menu-btn {
        display: flex !important;
    }
    
    .nav {
        position: relative;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        border-radius: 0 0 8px 8px;
        gap: 0;
    }
    
    .nav-menu.mobile-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        border-bottom: 1px solid #E5E7EB;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 16px 20px;
        display: block;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .logo-image {
        height: 30px;
        margin-right: 8px;
    }
    
    .language-selector {
        padding: 6px 8px;
        font-size: 14px;
    }

        .language-dropdown {
        left: auto;
        right: 0;
        min-width: 120px;
    }
    
    .language-option {
        padding: 6px 8px;
        font-size: 13px;
    }
    
    .flag-icon {
        width: 16px;
        height: 12px;
    }

    /* Social Icons */
        .social-fixed {
        display: flex !important;
        position: fixed;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        flex-direction: column;
        gap: 10px;
        z-index: 100;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: white;
        transition: transform 0.2s ease;
        font-size: 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    
    .social-icon:hover {
        transform: scale(1.1);
    }
    
    .social-icon.linkedin {
        background: #0077B5;
    }
    
    .social-icon.instagram {
        background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    }
    
    .social-icon.facebook {
        background: #1877F2;
    }

    /* Contact Hero Section */
.contact-hero {
    background: #1f3bb3;
    color: white;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
    max-height: 250px;
}

.contact-hero-content {
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.contact-hero-text {
    padding-right: 40px;
    padding-top: 60px;
    width: 80%;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    width: 80%;
}

.contact-hero p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 700px;
}

/* Floating Contact Form */
.floating-contact-form {
    position: absolute;
    right: 60px;
    top: 250px;
    width: 450px;
    z-index: 10;
}

.contact-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #E5E7EB;
    border-radius: 25px;
    font-size: 16px;
    color: #2d2d2d;
    background: white;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: #1f3bb3;
}

.form-input::placeholder, .form-textarea::placeholder {
    color: #9CA3AF;
    font-weight: 500;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
}

.form-textarea {
    min-height: 180px;
    resize: vertical;
    border-radius: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.file-upload {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.file-upload-input {
    position: absolute;
    left: -9999px;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid #E5E7EB;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    color: #595959;
    transition: border-color 0.3s ease;
    background: white;
}

.file-upload-label:hover {
    background-color: #1f3bb3;
    color: white;
}

.submit-btn {
    background: #1f3bb3;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #1a328a;
}

/* Get in Touch Section */
.get-in-touch-section {
    background: white;
    padding: 60px 0;
}

.get-in-touch-section h2 {
    font-size: 36px;
    font-weight: 400;
    color: #2d2d2d;
    margin-bottom: 8px;
    position: relative;
}

.get-in-touch-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 55%;
    height: 2px;
    background: #E5E7EB;
}

.get-in-touch-section h2 .highlight {
    color: #1f3bb3;
    font-weight: 700;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    margin-top: 40px;
    max-width: 60%;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #1f3bb3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-details h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 18px;
    color: #595959;
    margin: 0;
}

.contact-details .contact-info {
    font-size: 20px;
    color: #2d2d2d;
    font-weight: 500;
}

/* Office Locations Section */
.office-locations-section {
    background: white;
    padding: 0px 0px;
}

.office-locations-section h2 {
    font-size: 28px;
    font-weight: 400;
    color: #2d2d2d;
    margin-bottom: 8px;
    position: relative;
}

.office-locations-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 55%;
    height: 2px;
    background: #E5E7EB;
}

.office-locations-section h2 .highlight {
    color: #1f3bb3;
    font-weight: 700;
}

.offices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0px 0px;
    margin-top: 40px;
    max-width: 60%;
    margin-bottom: 80px;
}

.office-item:nth-child(2) { /* Belgian office */
    margin-left: -10px; /* Move it closer to Dublin */
}

.office-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.office-icon {
    width: 30px;
    height: 30px;
    background: #1f3bb3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.office-icon svg {
    width: 18px;
    height: 18px;
    color: white;
}

.office-details h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 4px;
}

.office-details .office-type {
    font-size: 14px;
    color: #595959;
    margin-bottom: 12px;
}

.office-details .office-address {
    font-size: 18px;
    color: #595959;
    line-height: 1.4;
    margin-bottom: 16px;
}

.get-directions-btn {
    background: white;
    color: #1f3bb3;
    border: 1px solid #1f3bb3;
    padding: 8px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.get-directions-btn:hover {
    background: #1f3bb3;
    color: white;
}

            /* Newsletter Section */
    .newsletter-section {
        padding: 40px 0;
    }
    
    .newsletter-content h2 {
        font-size: 24px;
        margin-bottom: 8px;
        padding: 0 15px;
        line-height: 1.3;
    }
    
    .newsletter-content p {
        font-size: 15px;
        margin-bottom: 24px;
        padding: 0 15px;
        max-width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
        max-width: 100%;
        margin: 0 15px 16px;
    }
    
    .newsletter-input {
        width: 100%;
        padding: 12px 16px;
        font-size: 15px;
        border-radius: 10px;
    }
    
    .newsletter-btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 15px;
        border-radius: 10px;
    }
    
    .newsletter-disclaimer {
        font-size: 11px;
        margin-top: 12px;
        padding: 0 15px;
        white-space: normal;
        line-height: 1.4;
    }
    
    /* Footer */
    .footer {
        padding: 35px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        align-items: center;
    }
    
    .footer-left {
        margin-left: 0;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 15px;
        margin-top: 0;
    }
    
    .logo-img {
        width: 220px;
        height: 95px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .say-hello-btn {
        font-size: 12px;
        padding: 8px 20px;
        margin-left: 0;
        margin-bottom: 10px;
        border-radius: 8px;
    }
    
    .footer-tagline {
        font-size: 18px;
        margin-left: 0;
        margin-bottom: 0;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        width: 100%;
        align-items: center;
    }
    
    .footer-column {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-column h4 {
        font-size: 15px;
        margin-bottom: 15px;
        color: white;
    }
    
    .footer-column ul li {
        margin-bottom: 8px;
    }
    
    .footer-column ul li a {
        font-size: 13px;
    }
    
    .footer-newsletter {
        flex-direction: column;
        gap: 10px;
        max-width: 280px;
        margin: 0 auto 18px;
    }
    
    .footer-newsletter input {
        width: 100%;
        padding: 12px 16px;
        border-radius: 8px;
        font-size: 13px;
        border: 1px solid #B5BDDB;
    }
    
    .footer-newsletter button {
        width: 100%;
        padding: 12px 16px;
        border-radius: 8px;
        font-size: 13px;
        background: #ffffff;
        color: #1f3bb3;
        border: 2px solid #ffffff;
        font-weight: 600;
    }
    
    .footer-help {
        text-align: center;
    }
    
    .footer-help h5 {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .footer-help p {
        font-size: 11px;
    }
   .floating-contact-form {
        position: inherit !important;
        margin: 40px auto 40px;
   }
 .newsletter-form .ajax-newsletter{
      display:flex;
        flex-direction: column;
        gap: 12px;
        max-width: 100%;
        margin: 0 15px 16px;
    }
 .footer-newsletter .ajax-newsletter{
      display:flex;
        flex-direction: column;
        gap: 12px;
        max-width: 100%;
        margin: 0;
    }
   .contact-methods{max-width:100%;}
   .offices-grid{max-width:100%;}
.contact-methods{display: grid; max-width: 100%; flex-wrap: inherit;}
.contact-method{margin-right: 0px;}
.offices-grid{display: grid; max-width: 100%; flex-wrap: inherit;}
.offices-grid .office-item{margin-right: 0px;}
.office-details .office-address{font-size: 14px;}
.contact-details .contact-info{font-size: 17px;}
.contact-hero{max-height: inherit;}
.contact-hero-text{width:100%; padding-top:0;}
.contact-hero h1{width:100%;}
.footer-newsletter input{margin-bottom:10px;}
}

/* Landscape Mobile - 580px and down */
@media (max-width: 580px) {
    .contact-hero {
        padding: 60px 0 60px; /* Extra bottom padding for form */
        min-height: auto;
    }
    
    .contact-hero-content {
        gap: 40px;
    }
    
    .contact-hero-text {
        padding-right: 20px;
        padding-top: 20px;
        width: 100%;
    }
    
    .contact-hero h1 {
        font-size: 36px;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .contact-hero p {
        font-size: 16px;
        max-width: 100%;
    }
    
    .floating-contact-form {
        position: static;
        right: auto;
        top: auto;
        width: 100%;
        margin-top: 40px;
        padding: 0 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .form-input, .form-select, .form-textarea {
        padding: 14px 18px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 20px;
    }
    
    .form-textarea {
        min-height: 120px;
    }
    
    .submit-btn {
        padding: 14px 30px;
        font-size: 16px;
    }
}

/* Portrait Mobile - 430px and down */
@media (max-width: 430px) {
    .contact-hero {
        padding: 40px 0 40px;
    }
    
    .contact-hero-text {
        padding-right: 15px;
        padding-top: 15px;
    }
    
    .contact-hero h1 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .contact-hero p {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .floating-contact-form {
        padding: 0 15px;
        margin-top: 30px;
    }
    
    .contact-form {
        padding: 25px 15px;
        border-radius: 12px;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-input, .form-select, .form-textarea {
        padding: 12px 16px;
        border-radius: 18px;
    }
    
    .form-textarea {
        min-height: 100px;
        border-radius: 18px;
    }
    
    .form-label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .file-upload-label {
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 18px;
    }
    
    .submit-btn {
        padding: 12px 25px;
        font-size: 15px;
        border-radius: 18px;
    }
}

/* Landscape Mobile - 580px and down */
@media (max-width: 580px) {
    .get-in-touch-section {
        padding: 40px 0;
    }
    
    .get-in-touch-section h2 {
        font-size: 32px;
    }
    
    .get-in-touch-section h2::after {
        width: 65%;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
        max-width: 100%;
    }
    
    .contact-method {
        gap: 16px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .contact-details h3 {
        font-size: 20px;
    }
    
    .contact-details p {
        font-size: 16px;
    }
    
    .contact-details .contact-info {
        font-size: 18px;
    }
    
    /* Office Locations */
    .office-locations-section h2 {
        font-size: 24px;
    }
    
    .office-locations-section h2::after {
        width: 65%;
    }
    
    .offices-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
        max-width: 100%;
        margin-bottom: 60px;
    }
    
    .office-item:nth-child(2) {
        margin-left: 0;
    }
    
    .office-item {
        gap: 12px;
    }
    
    .office-details h3 {
        font-size: 20px;
    }
    
    .office-details .office-type {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .office-details .office-address {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .get-directions-btn {
        padding: 8px 18px;
        font-size: 13px;
        border-radius: 8px;
    }
}

/* Portrait Mobile - 430px and down */
@media (max-width: 430px) {
    .get-in-touch-section {
        padding: 30px 0;
    }
    
    .get-in-touch-section h2 {
        font-size: 28px;
        margin-bottom: 6px;
    }
    
    .get-in-touch-section h2::after {
        width: 75%;
    }
    
    .contact-methods {
        gap: 25px;
        margin-top: 25px;
    }
    
    .contact-method {
        gap: 14px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        border-radius: 6px;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-details h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .contact-details p {
        font-size: 15px;
    }
    
    .contact-details .contact-info {
        font-size: 16px;
    }
    
    /* Office Locations */
    .office-locations-section h2 {
        font-size: 22px;
    }
    
    .office-locations-section h2::after {
        width: 75%;
    }
    
    .offices-grid {
        gap: 20px;
        margin-top: 25px;
        margin-bottom: 50px;
    }
    
    .office-item {
        gap: 10px;
    }
    
    .office-icon {
        width: 25px;
        height: 25px;
        border-radius: 6px;
    }
    
    .office-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .office-details h3 {
        font-size: 18px;
        margin-bottom: 3px;
    }
    
    .office-details .office-type {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .office-details .office-address {
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    
    .get-directions-btn {
        padding: 6px 14px;
        font-size: 12px;
        border-radius: 6px;
    }
  .footer-newsletter .ajax-newsletter{
	 display: flex;
	flex-direction: row;
	max-width: 300px;
	gap: 10px;
}

.footer-newsletter #newsletter-email {
	margin-bottom: 0px;
	flex: 1;
}
.footer-newsletter input{margin-bottom:0;}
.footer-newsletter button {
	width: auto !important;
}
.footer-newsletter .ajax-newsletter{display:flex!important; flex-wrap:wrap;}
}
