@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

/* Optional: Set a default size for headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif; /* or 'Montserrat', sans-serif */
    font-weight: 600; /* Bold weight for headings */
}

/* Ensure paragraph text inherits the font */
p {
    font-family: 'Poppins', sans-serif; /* or 'Montserrat', sans-serif */
}

/* HERO SECTION */
.hero {
    position: relative;
    background-image: url('imgs/yellowfleet.jpg'); /* Replace with your image URL */
    background-size: cover; /* Cover the entire section */
    background-position: center; /* Center the image */
    height: 70vh; /* Full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: flex-start; /* Align content to the left */
    color: #fff; /* Text color */
    padding: 40px;
    overflow: hidden; /* Prevent overflow */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 49, 69, 0.6); /* Blue overlay with opacity */
    z-index: 1; /* Place it below the text */
}

.hero h1 {
    font-size: 64px; 
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); 
    z-index: 2; 
}

.hero p {
    font-size: 28px; /* Adjust as needed */
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* Add shadow for better contrast */
    z-index: 2; /* Place it above the overlay */
}

.cta-button {
    background: rgba(129, 129, 130, 0.505); /* Button color */
    color: #003366; /* Button text color */
    padding: 15px 30px; /* Button padding */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    font-size: 18px; /* Button font size */
    /* transition: background 0.3s;  */
    z-index: 2; /* Place it above the overlay */
}

.cta-button:hover {
    /* background: #005599;  */
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px; /* Adjust heading size for smaller screens */
    }

    .hero p {
        font-size: 18px; /* Adjust paragraph size for smaller screens */
    }
}



footer {
    text-align: center;
    padding: 20px;
    background: #003366;
    color: #fff;
    position: relative;
    bottom: 0;
    width: 100%;
}

.gallery {
    padding: 60px 20px;
    text-align: center;
}

.gallery-images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-images img {
    margin: 10px;
    transition: transform 0.3s;
}

.gallery-images img:hover {
    transform: scale(1.05);
}

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

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

/* SOLUTIONS */
.solutions {
    padding: 60px 20px;
    background: #e6f2ff;
    text-align: center;
    width: 100%; /* Ensure the section takes full width */
}

.solutions h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #003366;
}

.solution-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns on desktop */
    gap: 20px;
    padding: 0; /* Remove padding to ensure full width */
    width: 100%; /* Ensure the container takes full width */
}

.solution-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeIn 0.5s forwards;
    height: 300px; /* Fixed height for uniformity */
}

.solution-item img {
    width: 100%;
    height: 100%; /* Cover the entire height of the card */
    object-fit: cover; /* Maintain aspect ratio, cover area */
}

.solution-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7); /* Darken the bottom half */
    color: white;
    padding: 20px;
    transition: opacity 0.3s;
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.solution-item:hover .solution-content {
    opacity: 1;
}

.solution-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.solution-item p {
    font-size: 16px;
    color: #ddd; /* Lighten text for better readability */
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .solution-container {
        grid-template-columns: 1fr; /* One column on tablets */
        padding: 0; /* Ensure no padding affects width */
    }

    .solutions {
        padding: 40px 10px; /* Maintain padding on mobile */
    }

    .solutions h2 {
        font-size: 26px;
    }

    .solution-content {
        padding: 15px;
    }

    .solution-item h3 {
        font-size: 25px;
    }

    .solution-item p {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .solutions h2 {
        font-size: 26px;
    }

    .solution-item h3 {
        font-size: 25px;
    }

    .solution-item p {
        font-size: 18px;
    }
}



/* END SOLUTIONS */

/* TESTIMONIAL */
.testimonials {
    padding: 40px 20px; /* Reduced padding */
    background: #f0f8ff;
    text-align: center;
}

.testimonials h2 {
    font-size: 28px;
    margin-bottom: 20px; /* Reduced margin */
    color: #003366;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 0; /* Added padding to keep content off edges */
}

.testimonial-item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-item.active {
    display: block;
    opacity: 1;
}

.rating {
    font-size: 48px;
    color: #ffcc00; /* Gold color for stars */
    margin-bottom: 10px;
}

blockquote {
    font-style: italic;
    margin: 20px auto;
    max-width: 500px;
    font-size: 22px;
}

blockquote footer {
    font-size: 14px;
    color: #555;
}

/* Carousel buttons */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 10px;
    font-size: 20px;
    color: #003366;
    transition: background 0.3s, color 0.3s;
    opacity: .5;
}

.carousel-button:hover {
    background: rgba(255, 255, 255, 1);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .testimonials h2 {
        font-size: 26px;
    }

    .rating {
        font-size: 36px;
    }

    blockquote {
        font-size: 16px;
    }
}



/* WHY CHOOSE US */
.why-choose-us {
    padding: 60px 20px;
    background: #f0f4f8;
    text-align: center;
    position: relative;
}

.why-choose-us h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #003366;
    letter-spacing: 1px;
}

.reasons-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0 auto;
}

.reason {
    flex: 1 1 220px; /* Flexible sizing */
    margin: 20px;
    background: #ffffff;
    border-radius: 8px;
    padding: 30px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s;
}

.icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.reason:hover {
    transform: scale(1.05);
}

.reason h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #003366;
}

.reason p {
    font-size: 18px;
    color: #555;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .why-choose-us h2 {
        font-size: 26px;
    }

    .reason h3 {
        font-size: 25px;
    }

    .reason p {
        font-size: 16px;
    }
}

/* PROCESS */
.process {
    padding: 60px 20px;
    background: #f8f8f8;
    text-align: center;
}

.process h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #003366;
}

.process-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    background: #e6f2ff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* .step-number {
    background: #003366;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: absolute;
    top: -20px;
    left: calc(50% - 20px);
} */

.step-number {
    color: #fff;
    background: #003366;
    width: 50px;
  height: 50px;
  border-radius: 80% 0 55% 50% / 55% 0 80% 50%;
  border: 3px solid black;
  transform: rotate(-45deg);
  margin-top: 20px;

  display: flex;
  align-items: center;
    justify-content: center;
    font-size: 18px;
    left: calc(50% - 20px);
    position: absolute;
    top: -20px;
}



.process-step h3 {
    font-size: 22px;
    margin-top: 50px; /* Create space for step number */
    margin-bottom: 15px;
    color: #003366;
}

.process-step p {
    font-size: 18px;
    color: #555;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .process h2 {
        font-size: 26px;
    }

    .process-step h3 {
        font-size: 25px;
    }

    .process-step p {
        font-size: 16px;
    }
}

/* MOBILITY */
.mobility {
    padding: 60px 200px;
    background: #fff;
    text-align: center;
    position: relative;
}

.mobility h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #003366;
}

.mobility p {
    font-size: 20px;
    color: #555;
    margin: 20px 0;
}

.mobility-map {
    position: relative;
    margin: 20px auto;
    max-width: 1000px;
}

.mobility-map img {
    width: 100%;
    border-radius: 8px;
}

.highlight {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: silver;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .mobility {
        padding: 60px 20px;
    }

    .mobility h2 {
        font-size: 26px;
    }

    .mobility p {
        font-size: 14px;
    }

    .highlight {
        font-size: 22px;
    }
}

/* FAQ */
.faqs {
    padding: 40px;
    background: #f4f4f4; /* Light background for contrast */
    border-radius: 8px; /* Rounded corners */
}

.faq-container {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    margin-bottom: 20px;
    padding: 15px 0; /* Vertical padding only */
    color: #333; /* Dark text for readability */
}

.faq-item h3 {
    cursor: pointer; /* Pointer for clickable headers */
    margin: 10px 0; /* Margin for spacing */
    color: #003366; /* Header color */
    transition: color 0.3s ease;
}

.faq-item h3:hover {
    color: #ffcc00; /* Hover effect for headers */
}

.faq-item p {
    margin: 0 0 15px; /* Space below the paragraph */
    line-height: 1.6; /* Improve readability */
}

.faq-item.hidden {
    display: none; /* Hide items with 'hidden' class */
}

button {
    background: #003366; /* Button background */
    color: #ffffff; /* Button text color */
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: block; /* Center the button */
    margin: 20px auto; /* Space above and below */
}

button:hover {
    background: #ffcc00; /* Hover effect */
}

/* ABOUT */
.about {
    padding: 40px;
    background: #f4f4f4; /* Light background for contrast */
    text-align: center; /* Center text for better alignment */
}

.about-content {
    display: flex;
    flex-direction: column; /* Stack elements on small screens */
    align-items: center; /* Center content */
    max-width: 800px;
    margin: auto;
}

.about-image {
    width: 150px; /* Fixed width for image */
    height: 150px; /* Fixed height for image */
    border-radius: 50%; /* Circular image */
    object-fit: cover; /* Cover to fill the circular space */
    border: 5px solid #003366; /* Border around the image */
    margin-bottom: 20px; /* Space below the image */
}

.about-text {
    background: white; /* White background for text */
    padding: 20px;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

@media (min-width: 768px) {
    .about-content {
        flex-direction: row; /* Side by side on larger screens */
        align-items: flex-start; /* Align items to the start */
    }

    .about-image {
        margin-right: 20px; /* Space between image and text */
    }

    .about-text {
        flex: 1; /* Allow text to take up available space */
    }
}

/* CONTACT */
/* CONTACT */
.contact {
    padding: 60px 20px;
    background: #e6f2ff; /* Optional background color */
    text-align: center;
}

.contact h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #003366;
}

.contact p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #333; /* Dark text for readability */
}

.contact-info {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items */
    gap: 20px; /* Space between items */
}

.contact-item {
    display: flex;
    align-items: center; /* Center icon and text vertically */
    gap: 10px; /* Space between icon and text */
    color: #003366; /* Text color */
    font-size: 18px; /* Font size for contact info */
}

.contact-icon {
    font-size: 24px; /* Icon size */
    color: #003366; /* Icon color */
}

/* Link styles */
.contact-link {
    text-decoration: none;
    color: #003366; /* Link color */
}

.contact-link:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .contact h2 {
        font-size: 26px; /* Adjust heading size for smaller screens */
    }

    .contact p {
        font-size: 16px; /* Smaller font for mobile */
    }
}

@media (max-width: 480px) {
    .contact-item {
        flex-direction: row; /* Keep items in a row for mobile */
        text-align: center; /* Center-align text */
    }
}

/* GALLERY */
.gallery {
    padding: 60px 20px;
    text-align: center;
    background: #f9f9f9; /* Optional background color */
}

.gallery h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #003366;
}

.gallery-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center images horizontally */
    gap: 10px; /* Space between images */
}

.gallery-images img {
    width: 100%; /* Full width */
    height: 250px; /* Fixed height for uniformity */
    max-width: 500px; /* Maximum width for larger screens */
    object-fit: cover; /* Maintain aspect ratio, fill the area */
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .gallery{
        padding: 0;
    }
    .gallery h2 {
        font-size: 26px; /* Adjust heading size for smaller screens */
    }

    .gallery-images img {
        max-width: 100%; /* Ensure images take full width on mobile */
        height: 350px; /* Maintain fixed height */
    }
}

/* FLEET */
.fleet-section {
    padding: 40px 20px;
    background: #f0f8ff;
    text-align: center;
}

.fleet-section h2 {
    font-size: 28px;
    color: #003366;
    margin-bottom: 20px;
}

.fleet-content {
    display: flex;
    align-items: center; /* Aligns image and text vertically */
    justify-content: center;
    gap: 20px; /* Space between image and text */
}

.fleet-image {
    max-width: 50%; /* Take half of the section on desktop */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Rounded corners */
}

.fleet-description {
    text-align: left;
    max-width: 50%; /* Also takes half of the section */
}

.fleet-description p {
    font-size: 16px;
    margin: 10px 0;
    color: #333;
}

/* Call to Action Button */
.cta-button {
    margin-top: 30px;
    padding: 10px 20px;
    background: #007BFF; /* Button color */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #0056b3; /* Darker shade on hover */
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .fleet-content {
        flex-direction: column; /* Stack image and text */
        align-items: center; /* Center align for mobile */
    }
    
    .fleet-image {
        max-width: 80%; /* Make the image larger on mobile */
        margin-bottom: 20px; /* Space below image */
    }

    .fleet-description {
        max-width: 100%; /* Allow full width for text */
    }
}

/* DETAIL */
.premium-detail-section {
    padding: 40px 20px;
    background: #f0f8ff;
    text-align: center;
}

.premium-detail-section h2 {
    font-size: 28px;
    color: #003366;
    margin-bottom: 20px;
}

.premium-detail-content {
    display: flex;
    align-items: center; /* Aligns image and text vertically */
    justify-content: center;
    gap: 20px; /* Space between image and text */
}

.premium-detail-image {
    max-width: 50%; /* Take half of the section on desktop */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Rounded corners */
}

.premium-detail-description {
    text-align: left;
    max-width: 50%; /* Also takes half of the section */
}

.premium-detail-description p {
    font-size: 16px;
    margin: 10px 0;
    color: #333;
}

/* Call to Action Button */
.cta-button {
    margin-top: 30px;
    padding: 10px 20px;
    background: #007BFF; /* Button color */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #0056b3; /* Darker shade on hover */
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .premium-detail-content {
        flex-direction: column; /* Stack image and text */
        align-items: center; /* Center align for mobile */
    }
    
    .premium-detail-image {
        max-width: 80%; /* Make the image larger on mobile */
        margin-bottom: 20px; /* Space below image */
    }

    .premium-detail-description {
        max-width: 100%; /* Allow full width for text */
    }
}

/* ===================== GO-LIVE UPDATES ===================== */
:root { --navy:#003366; --gold:#e8b23a; --ink:#14181f; }
html { scroll-behavior:smooth; scroll-padding-top:64px; }

/* Sticky top call bar */
.topbar{
  position:sticky; top:0; z-index:1000;
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; padding:10px 18px;
  background:var(--ink); color:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,.25);
}
.topbar-brand{ color:#fff; font-weight:700; font-size:20px; text-decoration:none; letter-spacing:.5px; }
.topbar-brand span{ color:var(--gold); }
.topbar-call{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--gold); color:#14181f; font-weight:700;
  padding:9px 16px; border-radius:30px; text-decoration:none; font-size:16px; white-space:nowrap;
}
.topbar-call:hover{ background:#f0c151; }

/* Floating call button (mobile) */
.float-call{
  position:fixed; right:16px; bottom:16px; z-index:1500;
  display:none; align-items:center; gap:8px;
  background:var(--gold); color:#14181f; font-weight:700;
  padding:14px 20px; border-radius:40px; text-decoration:none; font-size:17px;
  box-shadow:0 6px 18px rgba(0,0,0,.35);
}
@media (max-width:768px){ .float-call{ display:inline-flex; } }

/* CTA buttons are now click-to-call links */
a.cta-button{
  display:inline-block; background:var(--gold); color:#14181f !important;
  font-weight:700; text-decoration:none; padding:14px 28px; border-radius:6px;
  box-shadow:0 4px 14px rgba(0,0,0,.25);
}
a.cta-button:hover{ background:#f0c151; }

/* ---- Gallery grid ---- */
.gallery-sub{ color:#555; margin:-20px 0 30px; font-size:17px; }
.gallery-images{
  display:grid; grid-template-columns:repeat(auto-fill, minmax(220px, 1fr));
  gap:10px; max-width:1200px; margin:0 auto;
}
.gallery-images img{
  width:100%; height:200px; max-width:none; object-fit:cover;
  border-radius:8px; cursor:pointer; display:block;
  transition:transform .25s, box-shadow .25s;
}
.gallery-images img:hover{ transform:scale(1.03); box-shadow:0 6px 16px rgba(0,0,0,.25); }
@media (max-width:768px){
  .gallery{ padding:40px 12px; }
  .gallery-images{ grid-template-columns:repeat(auto-fill, minmax(140px,1fr)); gap:8px; }
  .gallery-images img{ height:150px; }
}

/* ---- Lightbox ---- */
.lightbox{
  position:fixed; inset:0; z-index:2000; display:none;
  align-items:center; justify-content:center;
  background:rgba(10,12,16,.92); padding:20px;
}
.lightbox.open{ display:flex; }
.lightbox img{ max-width:92vw; max-height:86vh; border-radius:8px; box-shadow:0 10px 40px rgba(0,0,0,.6); }
.lb-btn{
  position:absolute; top:50%; transform:translateY(-50%);
  background:rgba(255,255,255,.12); color:#fff; border:none;
  width:54px; height:54px; border-radius:50%; font-size:26px; cursor:pointer;
  display:flex; align-items:center; justify-content:center; margin:0;
}
.lb-btn:hover{ background:rgba(255,255,255,.25); }
.lb-prev{ left:18px; } .lb-next{ right:18px; }
.lb-close{
  position:absolute; top:14px; right:18px; background:none; border:none;
  color:#fff; font-size:42px; cursor:pointer; line-height:1; padding:0; margin:0;
}
.lb-close:hover{ background:none; color:var(--gold); }
.lb-count{
  position:absolute; bottom:18px; left:50%; transform:translateX(-50%);
  color:#fff; font-size:15px; background:rgba(0,0,0,.4); padding:4px 12px; border-radius:20px;
}
@media (max-width:768px){ .lb-btn{ width:44px; height:44px; font-size:20px; } }

/* Footer phone */
.footer-call{ color:var(--gold); text-decoration:none; font-weight:700; }
.footer-call:hover{ text-decoration:underline; }

/* ---- Contact action buttons (call / text / email) ---- */
.contact-actions{
  display:flex; flex-wrap:wrap; gap:14px; justify-content:center;
  max-width:760px; margin:0 auto 36px;
}
.action-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  flex:1 1 200px; min-width:180px;
  padding:16px 28px; border-radius:8px; font-weight:700; font-size:18px;
  text-decoration:none; transition:background .2s, color .2s, transform .15s;
  box-shadow:0 3px 10px rgba(0,0,0,.12);
}
.action-btn:hover{ transform:translateY(-2px); }
.action-call{ background:var(--gold); color:#14181f; }
.action-call:hover{ background:#f0c151; }
.action-text{ background:var(--navy); color:#fff; }
.action-text:hover{ background:#0a4a8f; }
.action-email{ background:#fff; color:var(--navy); border:2px solid var(--navy); }
.action-email:hover{ background:var(--navy); color:#fff; }
@media (max-width:768px){
  .contact-actions{ flex-direction:column; }
  .action-btn{ width:100%; }
}

/* Phone/email line under the action buttons — icon + text on one centered line */
.contact-info{ display:flex; flex-direction:column; align-items:center; gap:12px; margin-top:6px; }
.contact-line{ display:inline-flex; align-items:center; gap:9px; font-size:18px; line-height:1; margin:0; }
.contact-line i{ color:var(--navy); font-size:19px; }
.contact-line a{ color:var(--navy); text-decoration:none; font-weight:600; }
.contact-line a:hover{ text-decoration:underline; }