/* ============================================
   ENHANCEMENTS CSS - UX & Accessibility Improvements
   ============================================ */

/* 1. Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* 2. Better Focus Indicators for Accessibility */
*:focus {
    outline: 2px solid #25d366;
    outline-offset: 2px;
}

button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
    outline: 2px solid #25d366;
    outline-offset: 2px;
}

/* Remove outline for mouse users, keep for keyboard */
.js-focus-visible :focus:not(.focus-visible) {
    outline: none;
}

/* 3. Enhanced Form Validation Styles */
.form-box input.error,
.form-box textarea.error,
.form-box select.error {
    border: 2px solid #dc3545 !important;
    background-color: #fff5f5;
    animation: shake 0.3s ease-in-out;
}

.form-box input.valid,
.form-box textarea.valid,
.form-box select.valid {
    border: 2px solid #28a745 !important;
    background-color: #f0fff4;
}

/* Shake animation for errors */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Error message styling */
.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: block;
    animation: fadeIn 0.3s ease-in;
}

/* Success checkmark */
.success-checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

/* 4. Loading Button States */
.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

/* 5. Success Animation */
@keyframes successPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.success-animation {
    animation: successPulse 0.6s ease-out;
}

/* Checkmark animation */
@keyframes checkmark {
    0% {
        stroke-dashoffset: 50;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.checkmark-circle {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: checkmark 0.6s ease-out forwards;
}

/* 6. Enhanced Alert Messages */
#bookingSuccess {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left: 4px solid #28a745;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.4s ease-out;
}

#bookingError {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-left: 4px solid #dc3545;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 7. Better Button Hover Effects */
.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* 8. Enhanced Form Input Transitions */
.form-box input,
.form-box textarea,
.form-box select {
    transition: all 0.3s ease;
}

.form-box input:focus,
.form-box textarea:focus,
.form-box select:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.2);
}

/* 9. Mobile Touch Target Improvements */
@media (max-width: 768px) {
    .btn,
    .whatsapp-float,
    a {
        min-height: 44px;
        min-width: 44px;
    }
    
    .form-box input,
    .form-box textarea,
    .form-box select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 15px;
    }
    
    /* Better spacing on mobile */
    .form-box {
        margin-bottom: 20px;
    }
}

/* 10. Skip to Content Link (Accessibility) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #25d366;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

/* 11. Improved Social Media Icons */
.footer-social a {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* 12. Smooth Transitions for All Interactive Elements */
a,
button,
input,
textarea,
select {
    transition: all 0.3s ease;
}

/* 13. Better Loading States */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #25d366;
    border-radius: 50%;
    animation: spinner 0.8s linear infinite;
}

/* 14. Enhanced WhatsApp Button */
.whatsapp-float {
    min-width: 60px;
    min-height: 60px;
}

.whatsapp-float:focus {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

/* 15. Print Styles */
@media print {
    .whatsapp-float,
    #scrollUp,
    .header-area,
    .footer-area {
        display: none !important;
    }
}

/* 16. Reduced Motion (Accessibility) */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* 17. High Contrast Mode Support */
@media (prefers-contrast: high) {
    .btn {
        border: 2px solid currentColor;
    }
    
    .form-box input,
    .form-box textarea {
        border: 2px solid currentColor;
    }
}

/* ============================================
   DATE PICKER THEME CUSTOMIZATION - GIJGO BOOTSTRAP 4
   ============================================ */

/* Gijgo Datepicker Modal/Dialog - Bootstrap 4 */
.gj-modal .gj-picker-bootstrap.datepicker {
    font-family: 'Montserrat', sans-serif !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 30px rgba(232, 180, 184, 0.3) !important;
    border: 1px solid #E8B4B8 !important;
    overflow: hidden !important;
}

/* Datepicker Header - Bootstrap 4 */
.gj-picker-bootstrap.datepicker [role="header"] {
    background: linear-gradient(135deg, #E8B4B8 0%, #d4a5a9 100%) !important;
    color: #FFFFFF !important;
    padding: 15px 20px !important;
    font-family: 'Montserrat', sans-serif !important;
}

.gj-picker-bootstrap.datepicker [role="header"] [role="year"] {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 400 !important;
    font-family: 'Montserrat', sans-serif !important;
}

.gj-picker-bootstrap [role="header"] [role="date"] {
    font-size: 20px !important;
    color: #FFFFFF !important;
    font-weight: 600 !important;
    font-family: 'Montserrat', sans-serif !important;
}

/* Navigation Bar - Bootstrap 4 */
.gj-picker-bootstrap div[role="navigator"] {
    background: transparent !important;
    border-bottom: 1px solid rgba(232, 180, 184, 0.2) !important;
    font-family: 'Montserrat', sans-serif !important;
}

.gj-picker-bootstrap div[role="navigator"] div {
    color: #2e3c40 !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    font-family: 'Montserrat', sans-serif !important;
}

.gj-picker-bootstrap div[role="navigator"] .gj-icon,
.gj-picker-bootstrap div[role="navigator"] .material-icons {
    color: #E8B4B8 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.gj-picker-bootstrap div[role="navigator"] .gj-icon:hover,
.gj-picker-bootstrap div[role="navigator"] .material-icons:hover {
    color: #d4a5a9 !important;
    transform: scale(1.1) !important;
}

/* Calendar Table Header (Weekdays) - Bootstrap 4 */
.gj-picker-bootstrap table thead {
    background-color: #f8f9fa !important;
    border-bottom: 1px solid rgba(232, 180, 184, 0.2) !important;
}

.gj-picker-bootstrap table thead tr th {
    font-weight: 600 !important;
    font-size: 13px !important;
    font-family: 'Montserrat', sans-serif !important;
    color: #2e3c40 !important;
}

/* Calendar Days - Hover Effect - Bootstrap 4 */
.gj-picker-bootstrap table tr td.gj-cursor-pointer div:hover {
    background: rgba(232, 180, 184, 0.1) !important;
    border-radius: 4px !important;
    color: #E8B4B8 !important;
}

/* Today's Date - Bootstrap 4 */
.gj-picker-bootstrap table tr td.today div {
    color: #E8B4B8 !important;
    font-weight: 600 !important;
    border: 1px solid #E8B4B8 !important;
    border-radius: 4px !important;
    background-color: rgba(232, 180, 184, 0.2) !important;
}

/* Selected Date - THE KEY STYLING - Bootstrap 4 */
.gj-picker-bootstrap table tr td.selected.gj-cursor-pointer div {
    color: #FFFFFF !important;
    background: linear-gradient(135deg, #E8B4B8 0%, #d4a5a9 100%) !important;
    border-radius: 4px !important;
    box-shadow: 0 2px 8px rgba(232, 180, 184, 0.4) !important;
    font-weight: 600 !important;
    border-color: #d4a5a9 !important;
}

/* Focused Date - Bootstrap 4 */
.gj-picker-bootstrap table tr td.focused div {
    background: rgba(232, 180, 184, 0.15) !important;
    border-radius: 4px !important;
    color: #E8B4B8 !important;
}

/* Other Month Dates - Bootstrap 4 */
.gj-picker-bootstrap table tr td.other-month div {
    color: #ccc !important;
    opacity: 0.5 !important;
}

/* Calendar Days Text - Bootstrap 4 */
.gj-picker-bootstrap table tr td div {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}

/* Footer Buttons */
.gj-dialog-md-footer {
    background-color: #f8f9fa !important;
    border-top: 1px solid rgba(232, 180, 184, 0.2) !important;
    padding: 15px 20px !important;
    display: flex !important;
    justify-content: flex-end !important;
    gap: 10px !important;
}

.gj-dialog-md-footer button,
.gj-dialog-md-footer .gj-button {
    background: linear-gradient(135deg, #E8B4B8 0%, #d4a5a9 100%) !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 5px !important;
    padding: 10px 25px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 5px rgba(232, 180, 184, 0.3) !important;
}

.gj-dialog-md-footer button:hover,
.gj-dialog-md-footer .gj-button:hover {
    background: linear-gradient(135deg, #d4a5a9 0%, #E8B4B8 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 10px rgba(232, 180, 184, 0.4) !important;
}

.gj-dialog-md-footer button:active,
.gj-dialog-md-footer .gj-button:active {
    transform: translateY(0) !important;
}

/* Cancel Button */
.gj-dialog-md-footer button.gj-button-cancel,
.gj-dialog-md-footer .gj-button-cancel {
    background: #FFFFFF !important;
    color: #E8B4B8 !important;
    border: 2px solid #E8B4B8 !important;
}

.gj-dialog-md-footer button.gj-button-cancel:hover,
.gj-dialog-md-footer .gj-button-cancel:hover {
    background: #E8B4B8 !important;
    color: #FFFFFF !important;
}

/* Date Input Field Styling */
#bookingEventDate {
    font-family: 'Montserrat', sans-serif !important;
    cursor: pointer !important;
}

#bookingEventDate:focus {
    border-color: #E8B4B8 !important;
    box-shadow: 0 0 0 0.2rem rgba(232, 180, 184, 0.25) !important;
}

/* Calendar Icon Button */
.gj-datepicker-bootstrap [role="right-icon"] button,
.gj-datepicker-bootstrap [role="right-icon"] .gj-icon {
    color: #E8B4B8 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.gj-datepicker-bootstrap [role="right-icon"] button:hover,
.gj-datepicker-bootstrap [role="right-icon"] .gj-icon:hover {
    color: #d4a5a9 !important;
    transform: scale(1.1) !important;
}

/* Responsive Datepicker */
@media (max-width: 768px) {
    .gj-modal .gj-picker-bootstrap.datepicker {
        width: 90% !important;
        max-width: 350px !important;
    }
    
    .gj-picker-bootstrap table tr td div {
        font-size: 13px !important;
    }
    
    .gj-dialog-md-footer {
        flex-direction: column !important;
    }
    
    .gj-dialog-md-footer button,
    .gj-dialog-md-footer .gj-button {
        width: 100% !important;
    }
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

/* Services Intro Section */
.services-intro {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.services-intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.services-intro-content h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 48px;
    color: #E8B4B8;
    margin-bottom: 30px;
}

.services-intro-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #2e3c40;
    margin-bottom: 20px;
}

/* Service Cards Enhanced */
.service-card-enhanced {
    background: #fff;
    padding: 40px 25px;
    padding-bottom: 30px;
    box-shadow: 0px 0px 9px 0px rgba(131, 93, 248, 0.07);
    border: 1px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-enhanced:hover {
    box-shadow: 0px 10px 30px 0px rgba(232, 180, 184, 0.2);
    border: 1px solid #E8B4B8;
    transform: translateY(-5px);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #E8B4B8 0%, #d4a5a9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card-enhanced:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(232, 180, 184, 0.4);
}

.service-icon-wrapper i {
    font-size: 36px;
    color: #FFFFFF;
}

.service-card-enhanced h4 {
    color: #2e3c40;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
}

.service-card-enhanced .card-bottom {
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-card-enhanced .card-bottom ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-card-enhanced .card-bottom ul li {
    color: #636363;
    font-weight: 400;
    margin-bottom: 15px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    padding-left: 25px;
    position: relative;
}

.service-card-enhanced .card-bottom ul li:last-child {
    margin-bottom: 0;
}

.service-card-enhanced .card-bottom ul li i {
    position: absolute;
    left: 0;
    color: #E8B4B8;
    font-size: 14px;
}

.service-card-enhanced .card-buttons {
    margin-top: 20px;
}

.service-card-enhanced .card-btn1 {
    background-color: #E8B4B8;
    color: #FFFFFF;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-card-enhanced .card-btn1:hover {
    background-color: #d4a5a9;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(232, 180, 184, 0.3);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.feature-box {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 30px 0px rgba(232, 180, 184, 0.2);
}

.feature-box i {
    font-size: 48px;
    color: #E8B4B8;
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.feature-box:hover i {
    transform: scale(1.2);
    color: #d4a5a9;
}

.feature-box h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #2e3c40;
    margin-bottom: 15px;
}

.feature-box p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #636363;
    margin: 0;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    margin-bottom: 30px;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E8B4B8 0%, #d4a5a9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 10px rgba(232, 180, 184, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .process-number {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 6px 15px rgba(232, 180, 184, 0.4);
}

.process-step h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #2e3c40;
    margin-bottom: 15px;
}

.process-step p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #636363;
    margin: 0;
}

/* Responsive Styles for Services Page */
@media (max-width: 991px) {
    .services-intro-content h3 {
        font-size: 40px;
    }
    
    .service-card-enhanced {
        margin-bottom: 30px;
    }
    
    .feature-box {
        margin-bottom: 30px;
    }
    
    .process-step {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .services-intro {
        padding: 60px 0;
    }
    
    .services-intro-content h3 {
        font-size: 36px;
    }
    
    .service-card-enhanced {
        padding: 30px 20px;
    }
    
    .service-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .service-icon-wrapper i {
        font-size: 30px;
    }
    
    .why-choose-section,
    .process-section {
        padding: 60px 0;
    }
    
    .feature-box {
        padding: 30px 15px;
    }
    
    .process-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .services-intro {
        padding: 50px 0;
    }
    
    .services-intro-content h3 {
        font-size: 32px;
    }
    
    .service-card-enhanced h4 {
        font-size: 20px;
    }
    
    .feature-box h5,
    .process-step h5 {
        font-size: 18px;
    }
}

/* ============================================
   GALLERY/PORTFOLIO PAGE ENHANCED STYLES
   ============================================ */

/* Gallery Item Styling - Enhanced UI */
.single-gallery {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.single-gallery:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(232, 180, 184, 0.25);
}

.single-gallery .gallery-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.single-gallery .gallery-img img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.single-gallery:hover .gallery-img img {
    transform: scale(1.15);
}

/* Gallery Overlay with Icon - No Text */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(232, 180, 184, 0.9) 0%, rgba(212, 165, 169, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
}

.single-gallery:hover .gallery-overlay {
    opacity: 1;
    visibility: visible;
}

.gallery-overlay i {
    font-size: 48px;
    color: #FFFFFF;
    transform: scale(0.8);
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.single-gallery:hover .gallery-overlay i {
    transform: scale(1);
}

/* Gallery Link Styling */
.gallery-img-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-img-link:hover {
    text-decoration: none;
}

/* Enhanced Gallery Grid */
.portfolio-grid {
    margin: 0 -15px;
}

.portfolio-grid > div {
    padding: 0 15px;
}

/* Gallery Section Title Enhancement */
.gallery-area .text-center h2 {
    position: relative;
    display: inline-block;
}

.gallery-area .text-center img {
    max-width: 200px;
    margin: 20px auto;
    display: block;
}

/* Responsive Gallery */
@media (max-width: 991px) {
    .single-gallery .gallery-img {
        height: 480px;
    }
    
    .gallery-overlay i {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .single-gallery .gallery-img {
        height: 420px;
    }
    
    .gallery-overlay i {
        font-size: 36px;
    }
    
    .gallery-area .text-center h2 {
        font-size: 42px !important;
    }
}

@media (max-width: 480px) {
    .single-gallery .gallery-img {
        height: 380px;
    }
    
    .gallery-overlay i {
        font-size: 32px;
    }
    
    .gallery-area .text-center h2 {
        font-size: 36px !important;
    }
}

