/* Global Styles */
:root {
    --primary-color: #1e3a8a;
    --secondary-color: #0ea5e9;
    --accent-color: #f59e0b;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --gray-light-color: #e2e8f0;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #152b6b;
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #0284c7;
    color: white;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    color: var(--gray-color);
    font-size: 1.1rem;
}

/* Header & Navigation */
header {
    background-color: var(--dark-color);
    color: white;
    position: relative;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    position: absolute;
    width: 90%;
    max-width: 1200px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.logo span {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 1.5rem;
}

.nav-link {
    color: white;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary-color);
}

.nav-link.cta {
    background-color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    color: white;
}

.nav-link.cta:hover {
    background-color: #0284c7;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('image/herodetailingsection.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-light-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card.premium {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
    position: relative;
}

.service-card.premium::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.service-card ul {
    text-align: left;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-card ul li::before {
    content: '✓';
    color: var(--success-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.additional-services {
    background-color: var(--gray-light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.additional-services h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.additional-service {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.additional-service h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-color);
    border-radius: 20px;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
}

.about-content h2 {
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--gray-color);
}

.about-features li {
    display: flex;
    margin-bottom: 1.5rem;
}

.feature-icon {
    flex: 0 0 50px;
    height: 50px;
    background-color: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: white;
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    padding: 0 1rem;
}

.testimonial-content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    color: var(--dark-color);
}

.rating {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--gray-color);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: var(--primary-color);
    border: none;
    margin: 0 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Blog Section */
.blog-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.blog-meta {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 0.5rem;
}

.view-all-container {
    text-align: center;
}

/* Booking Section */
.booking-section {
    padding: 5rem 0;
    background-color: white;
}

.booking-form {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-light-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
}

/* === Booking Form Summary/Notes === */
.form-summary-notes {
    display: flex;          /* Arrange items horizontally */
    flex-wrap: wrap;        /* Allow items to wrap on small screens */
    justify-content: space-between; /* Push total left, warning right */
    align-items: center;   /* Vertically align items */
    margin-top: 1rem;       /* Space above this section */
    padding: 0.75rem 1rem;  /* Padding inside the box */
    background-color: var(--gray-light-color); /* Subtle background */
    border-radius: var(--border-radius);
    border: 1px solid #d1d5db; /* A slightly visible border */
    gap: 1rem;              /* Space between items if they wrap */
}

.estimated-total {
    font-size: 1.1rem;      /* Make total slightly larger */
    font-weight: 600;       /* Medium bold */
    white-space: nowrap;    /* Prevent 'Estimated Total: $X.XX' from breaking */
}

/* Style the placeholder/calculated number */
#calculated-total {
    font-weight: 700;       /* Make number bold */
    color: var(--primary-color); /* Use primary color for the amount */
    margin-left: 0.5rem;    /* Space after the label */
}

.total-warning {
    font-size: 0.85rem;     /* Make warning text slightly smaller */
    color: var(--gray-color); /* Use a less prominent color */
    margin: 0;              /* Remove default paragraph margin */
    text-align: right;      /* Align warning text to the right */
    line-height: 1.4;
    flex-basis: 50%;        /* Suggest warning takes up to half the space */
    flex-grow: 1;           /* Allow it to grow if total is short */
}

.total-warning i {
    margin-right: 0.4rem;
    color: var(--accent-color); /* Use accent color for the icon */
    vertical-align: middle; /* Align icon nicely with text */
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .form-summary-notes {
        flex-direction: column; /* Stack items vertically */
        align-items: flex-start; /* Align items to the start */
        text-align: left;        /* Ensure text aligns left when stacked */
    }
    .total-warning {
        text-align: left;        /* Align warning left when stacked */
        margin-top: 0.5rem;      /* Add space above warning when stacked */
        flex-basis: auto;        /* Reset flex-basis */
    }
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
    margin-right: 0.5rem;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-item {
    display: flex;
    margin-bottom: 2rem;
}

.contact-icon {
    flex: 0 0 50px;
    height: 50px;
    background-color: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.social-links h3 {
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.contact-form-container {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--secondary-color);
}

.footer-col p {
    color: #a1a1aa;
    margin-bottom: 1.5rem;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #a1a1aa;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletter-form button {
    padding: 0 1rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding: 1.5rem 0;
    text-align: center;
    display: flex;
    justify-content: space-between;
    color: #a1a1aa;
    font-size: 0.9rem;
}

.footer-bottom-links a {
    color: #a1a1aa;
    margin-left: 1.5rem;
}

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: var(--dark-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
        width: 100%;
    }
    
    .menu-toggle {
        display: block;
        z-index: 999;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .service-card.premium {
        transform: scale(1);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .nav-container {
        padding: 1rem 0;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .hero {
        height: 90vh;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .about-features li {
        flex-direction: column;
    }
    
    .feature-icon {
        margin-bottom: 1rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

/* Popup Styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1000; /* Ensures it’s above other content */
    align-items: center;
    justify-content: center;
}

.popup-content {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius); /* Matches site’s border radius */
    position: relative;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
}

/* === Hero Button Enhancements === */

/* Style adjustments for BOTH buttons inside the hero section */
.hero .btn {
    padding: 32px 64px; /* Increase padding for larger size */
    font-size: 2.3rem; /* Make font slightly larger */
    font-weight: 800; /* Ensure font is bold */
    margin: 0 0.75rem; /* Add a bit more space between buttons if needed */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25); /* Add a more noticeable shadow */
    transform: scale(1); /* Base scale for transitions/animations */
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, background-color 0.2s ease-out; /* Smooth transitions for hover */
}

/* Enhanced Hover/Focus effect for BOTH hero buttons */
.hero .btn:hover,
.hero .btn:focus-visible { /* focus-visible for keyboard accessibility */
    transform: translateY(-4px) scale(1.02); /* Lift up slightly more and subtle grow */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover/focus */
}

/* Specific hover adjustments if needed (can fine-tune brightness/color) */
.hero .btn-primary:hover,
.hero .btn-primary:focus-visible {
    background-color: #254ac2; /* Slightly brighter/richer blue */
}

.hero .btn-secondary:hover,
.hero .btn-secondary:focus-visible {
    background-color: #1fb6ee; /* Slightly brighter/richer cyan */
}


/* === Animation for "Book Now" Button === */

/* Define the pulsing animation */
@keyframes subtlePulse {
    0% {
        transform: scale(1);
         /* Keep the original translateY from hover */
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    }
    50% {
        transform: scale(1.04); /* Slightly larger scale */
         /* Keep the original translateY from hover */
        box-shadow: 0 8px 18px rgba(30, 58, 138, 0.4); /* Glow using primary color */
    }
    100% {
        transform: scale(1);
        /* Keep the original translateY from hover */
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    }
}


/* Apply the animation ONLY to the primary button within the hero */
.hero .btn-primary {
    /* animation: name duration timing-function delay iteration-count direction fill-mode; */
    animation: subtlePulse 2.5s infinite ease-in-out;
}

/* Optional: Stop animation on hover/focus if it feels distracting */
/*
.hero .btn-primary:hover,
.hero .btn-primary:focus-visible {
    animation: none;
}
*/

/* === Header & Navigation (Update this existing rule) === */
.nav-container {
    display: flex;
    /* Removed justify-content: space-between; */
    align-items: center; /* Keep this */
    padding: 1.5rem 0;
    position: absolute;
    width: 90%;
    max-width: 1200px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

/* Add this new rule to push menu items/toggle to the right */
.nav-menu, .menu-toggle {
    margin-left: auto; /* Pushes nav/toggle right */
}


/* === Header Phone Number Styles (Replace previous .header-phone rules with these) === */
.header-phone {
    display: flex;
    align-items: center;
    font-weight: 700;           /* Bolder font weight */
    font-size: 1.15rem;         /* Increased font size */
    margin-left: 2rem;          /* Space after the logo */
    margin-right: 1rem;         /* Add some space BEFORE the nav menu/toggle starts */
    white-space: nowrap;
}

.header-phone a {
    color: var(--secondary-color); /* Use the bright secondary color */
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.2s ease; /* Add transitions */
}

.header-phone a:hover {
    color: var(--light-color);     /* Change to light color on hover for feedback */
    transform: scale(1.03);      /* Slightly enlarge on hover */
}

.header-phone i {
    margin-right: 0.6rem;        /* Slightly more space for icon */
    font-size: 1.25rem;         /* Slightly larger icon */
    color: var(--secondary-color); /* Match icon color to text */
    /* Optional: Use white icon for contrast: color: white; */
}

/* --- Responsive adjustments for Phone Number --- */
/* Adjust this breakpoint if your nav menu toggle appears sooner/later */
@media (max-width: 992px) {
    .header-phone {
        /* Option 1: Hide it completely on smaller screens */
         display: none;

        /* Option 2: Keep it but make it smaller (if hiding, keep display:none) */
        /*
        font-size: 1rem;
        margin-left: 1rem;
        margin-right: 0.5rem;
        */
    }
    /* If using Option 2 above, adjust icon size too */
    /*
    .header-phone i {
        font-size: 1.1rem;
    }
    */
}
/* Remove the older 768px/576px media queries for .header-phone if you had them */