/* =================================================================
   WAVE INTERNATIONAL - MODERN WEBSITE ENHANCEMENTS
   Author: AI Assistant
   Description: Comprehensive styling improvements for the entire website
   ================================================================= */

/* ==================== ROOT VARIABLES ==================== */
:root {
    --primary-color: #e74c3c;
    --secondary-color: #f39c12;
    --accent-color: #2c3e50;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #495057;
    --white: #ffffff;
    --black: #000000;
    --success-color: #27ae60;
    --warning-color: #f1c40f;
    --danger-color: #e74c3c;
    --info-color: #3498db;
    
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-dark: linear-gradient(135deg, var(--accent-color), #34495e);
    --gradient-light: linear-gradient(135deg, var(--white), var(--light-gray));
    
    --border-radius: 15px;
    --border-radius-lg: 25px;
    --border-radius-xl: 50px;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    --box-shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --box-shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
}

/* ==================== GLOBAL IMPROVEMENTS ==================== */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    font-weight: 400;
    overflow-x: hidden;
    font-size: 20px;
}

.container,
.container-fluid {
    padding-left: 20px;
    padding-right: 20px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* ==================== ENHANCED TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2.5rem; }
h4 { font-size: 2rem; }
h5 { font-size: 1.5rem; }
h6 { font-size: 1.25rem; }

p {
    font-size: 1.35rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
}

/* Enhanced readability for specific elements */
.subtitle,
.section-description,
.story-description p {
    font-size: 1.4rem;
    line-height: 1.8;
}

.heading-title {
    font-size: 3.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}

/* Navigation font size increase */
.lgx-nav > li > a {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--accent-color);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin: 0 5px;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Header contact info font size */
.header-top {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 0;
    font-size: 1.1rem;
}

/* Enhanced card content typography */
.gallery-content h3,
.about-top-single h3,
.story-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.gallery-content p,
.about-top-single p {
    font-size: 1.25rem;
    line-height: 1.7;
}

/* Form labels and inputs */
.form-group label {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 8px;
    display: block;
    font-size: 1.2rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 15px 20px;
    font-size: 1.2rem;
    transition: var(--transition);
    background: var(--white);
}

/* Footer text enhancement */
.lgx-footer-single h2.title {
    color: var(--white);
    font-size: 1.7rem;
    margin-bottom: 20px;
    position: relative;
}

.lgx-footer-single ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.15rem;
}

/* Counter and stats text */
.lgx-counter {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.counter-text small {
    font-size: 1.2rem;
    color: var(--medium-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact info text */
.contact-info .text h3,
.contact-info .text h4 {
    color: var(--accent-color);
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.contact-info .text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
}

/* Breadcrumb text */
.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-xl);
    padding: 10px 20px;
    backdrop-filter: blur(10px);
    font-size: 1.15rem;
}

/* Gallery and product badges */
.gallery-badge,
.product-category,
.quality-badge {
    font-size: 1.05rem;
    font-weight: 600;
}

/* Section badges */
.section-badge {
    font-size: 1.15rem;
    font-weight: 600;
}

/* Timeline content */
.timeline-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

/* ==================== MODERN BUTTONS ==================== */
.btn,
button,
input[type="submit"],
input[type="button"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius-xl);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.btn-primary,
.lgx-btn {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
}

.btn-primary:hover,
.lgx-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.4);
    color: var(--white);
    text-decoration: none;
}

.btn-secondary {
    background: var(--gradient-dark);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--white);
}

/* Button shimmer effect */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

/* ==================== ENHANCED HEADER ==================== */
.lgx-header {
    box-shadow: var(--box-shadow);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top a {
    color: var(--white);
    transition: var(--transition);
}

.header-top a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.lgx-logo img {
    transition: var(--transition);
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.1));
}

.lgx-logo:hover img {
    transform: scale(1.05);
}

/* Enhanced Navigation */
.lgx-nav > li > a:hover,
.lgx-nav > li > a.active {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

/* Enhanced Header Social Media Icons */
.header-top .right-menu ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px; /* Reduced from 45px */
    height: 35px; /* Reduced from 45px */
    background: rgba(255, 255, 255, 0.9); /* Much more opaque white background */
    border-radius: 6px; /* Slightly smaller radius */
    color: var(--primary-color); /* Dark text for contrast */
    font-size: 1.1rem; /* Reduced from 1.3rem */
    transition: var(--transition);
    margin: 0 4px; /* Reduced spacing */
    border: 2px solid rgba(255, 255, 255, 1);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15); /* Added shadow for depth */
}

.header-top .right-menu ul li a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px) scale(1.1); /* Reduced scale */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border-color: var(--white);
}

.header-top .right-menu ul li a i {
    font-size: 1.1rem; /* Reduced */
    line-height: 1;
    font-weight: bold; /* Make icons bolder */
}

/* Specific social media brand colors on hover */
.header-top .right-menu ul li a[href*="facebook"]:hover {
    background: #1877f2;
    color: var(--white);
    border-color: #1877f2;
}

.header-top .right-menu ul li a[href*="twitter"]:hover {
    background: #1da1f2;
    color: var(--white);
    border-color: #1da1f2;
}

.header-top .right-menu ul li a[href*="linkedin"]:hover {
    background: #0077b5;
    color: var(--white);
    border-color: #0077b5;
}

.header-top .right-menu ul li a[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: var(--white);
    border-color: #e6683c;
}

.header-top .right-menu ul li a[href*="pinterest"]:hover {
    background: #bd081c;
    color: var(--white);
    border-color: #bd081c;
}

/* Mobile menu improvements - Enhanced visibility */
.navbar-toggle {
    border: none !important;
    background: var(--gradient-primary) !important;
    border-radius: var(--border-radius);
    padding: 6px 8px;
    margin-top: 8px;
    margin-bottom: 8px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 42px;
    height: 34px;
    position: relative;
}

.navbar-toggle:hover,
.navbar-toggle:focus {
    background: var(--primary-color) !important;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    transform: translateY(-1px);
    outline: none;
}

/* Enhanced icon bar styling with multiple selectors */
.navbar-toggle .icon-bar,
.navbar-toggle span.icon-bar,
.navbar-header .navbar-toggle .icon-bar {
    background: #ffffff !important;
    background-color: #ffffff !important;
    border-radius: 1px;
    height: 3px !important;
    width: 26px !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: var(--transition);
    display: block !important;
    transform-origin: center;
    opacity: 1 !important;
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    border: none !important;
    content: '';
}

/* Force create lines if not present */
.navbar-toggle::before,
.navbar-toggle::after {
    content: '';
    background: #ffffff !important;
    height: 3px !important;
    width: 26px !important;
    display: block !important;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition);
    border-radius: 1px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.navbar-toggle::before {
    top: 8px;
}

.navbar-toggle::after {
    bottom: 8px;
}

/* Middle line using a pseudo element if needed */
.navbar-toggle {
    position: relative;
}

.navbar-toggle:not(:has(.icon-bar))::before,
.navbar-toggle:not(:has(.icon-bar))::after {
    content: '';
    background: #ffffff !important;
    height: 3px !important;
    width: 26px !important;
    display: block !important;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition);
    border-radius: 1px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Ensure all 3 lines are visible with specific targeting */
.navbar-toggle .icon-bar:nth-child(1),
.navbar-toggle .icon-bar:nth-child(2),
.navbar-toggle .icon-bar:nth-child(3),
.navbar-toggle .icon-bar:first-child,
.navbar-toggle .icon-bar:last-child {
    background: #ffffff !important;
    background-color: #ffffff !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: 3px !important;
    width: 26px !important;
    margin: 0 !important;
    border: none !important;
}

.navbar-toggle:hover .icon-bar,
.navbar-toggle:hover::before,
.navbar-toggle:hover::after {
    background: #ffffff !important;
    background-color: #ffffff !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Active state for when menu is open */
.navbar-toggle[aria-expanded="true"] {
    background: var(--accent-color) !important;
}

.navbar-toggle[aria-expanded="true"] .icon-bar:nth-child(1),
.navbar-toggle[aria-expanded="true"]::before {
    transform: rotate(45deg) translateY(9px) translateX(-50%);
}

.navbar-toggle[aria-expanded="true"] .icon-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-toggle[aria-expanded="true"] .icon-bar:nth-child(3),
.navbar-toggle[aria-expanded="true"]::after {
    transform: rotate(-45deg) translateY(-9px) translateX(-50%);
}

/* ==================== ENHANCED BANNER SECTIONS ==================== */
.lgx-banner-inner {
    background: var(--gradient-dark);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.lgx-banner-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="%23fff" opacity="0.1"/><circle cx="30" cy="30" r="1" fill="%23fff" opacity="0.1"/><circle cx="50" cy="50" r="1" fill="%23fff" opacity="0.1"/><circle cx="70" cy="70" r="1" fill="%23fff" opacity="0.1"/><circle cx="90" cy="90" r="1" fill="%23fff" opacity="0.1"/></svg>') repeat;
    pointer-events: none;
}

.breadcrumb > li > a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.breadcrumb > li > a:hover {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb > .active {
    color: var(--white);
    font-weight: 600;
}

/* ==================== ENHANCED CARDS & SECTIONS ==================== */
.about-top-single,
.lgx-single-speacial,
.gallery-item {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-top-single:hover,
.lgx-single-speacial:hover,
.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.about-top-single::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

/* Enhanced Icons */
.about-top-single img,
.fa {
    transition: var(--transition);
}

.about-top-single:hover img {
    transform: scale(1.1) rotate(5deg);
}

.fa {
    color: var(--primary-color);
}

/* ==================== ENHANCED FORMS ==================== */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
    outline: none;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

/* ==================== ENHANCED FOOTER ==================== */
#lgx-footer {
    background: var(--gradient-dark) !important;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

#lgx-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23fff" opacity="0.05"/><circle cx="60" cy="60" r="1" fill="%23fff" opacity="0.05"/></svg>') repeat;
    pointer-events: none;
}

.lgx-footer-single h2.title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.lgx-footer-single ul li {
    margin-bottom: 10px;
}

.lgx-footer-single ul li a:hover {
    color: var(--white);
    text-decoration: none;
    transform: translateX(5px);
}

.lgx-social-footer ul li a {
    width: 40px; /* Reduced from 55px */
    height: 40px; /* Reduced from 55px */
    background: var(--white); /* Pure white background for strong contrast */
    border-radius: 8px; /* Reduced radius */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 6px; /* Reduced spacing */
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 2px solid var(--white); /* White border */
    color: var(--accent-color); /* Dark color for better contrast against white */
    font-size: 1.1rem; /* Reduced from 1.5rem */
    text-decoration: none;
    box-shadow: 0 3px 12px rgba(255,255,255,0.3); /* White shadow for glow effect */
}

.lgx-social-footer ul li a:hover {
    background: var(--primary-color); /* Red background on hover */
    color: var(--white); /* White text on hover */
    transform: translateY(-4px) scale(1.1); /* Reduced transform */
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4); /* Red shadow on hover */
    border-color: var(--primary-color);
}

.lgx-social-footer ul li a i {
    font-size: 1.1rem; /* Reduced from 1.5rem */
    line-height: 1;
    font-weight: bold; /* Make icons bolder */
}

/* Footer Social Media Brand Colors */
.lgx-social-footer ul li a[href*="facebook"]:hover {
    background: #1877f2;
    color: var(--white);
    border-color: #1877f2;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.lgx-social-footer ul li a[href*="twitter"]:hover {
    background: #1da1f2;
    color: var(--white);
    border-color: #1da1f2;
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4);
}

.lgx-social-footer ul li a[href*="linkedin"]:hover {
    background: #0077b5;
    color: var(--white);
    border-color: #0077b5;
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.4);
}

.lgx-social-footer ul li a[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: var(--white);
    border-color: #e6683c;
    box-shadow: 0 8px 25px rgba(230, 104, 60, 0.4);
}

.lgx-social-footer ul li a[href*="pinterest"]:hover {
    background: #bd081c;
    color: var(--white);
    border-color: #bd081c;
    box-shadow: 0 8px 25px rgba(189, 8, 28, 0.4);
}

/* Enhanced Footer Social Container */
.lgx-social-footer {
    margin-top: 20px;
}

.lgx-social-footer ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lgx-social-footer ul li {
    margin: 5px 0;
}

/* Pulse animation for social icons */
@keyframes socialPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.lgx-social-footer ul li a:focus,
.header-top .right-menu ul li a:focus {
    animation: socialPulse 2s infinite;
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* ==================== ENHANCED COUNTERS & STATS ==================== */
.lgx-counter-area {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.lgx-counter-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.lgx-counter-area:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

/* ==================== ENHANCED CONTACT INFO ==================== */
.contact-info .lgx-box {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.contact-info .lgx-box:hover {
    transform: translateX(5px);
    box-shadow: var(--box-shadow-lg);
}

.contact-info .address {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-info .address i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

/* ==================== ENHANCED MAP ==================== */
iframe {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

iframe:hover {
    box-shadow: var(--box-shadow-lg);
}

/* ==================== LOADING ANIMATIONS ==================== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Apply animations to elements */
.about-top-single {
    animation: slideInUp 0.6s ease forwards;
}

.about-top-single:nth-child(1) { animation-delay: 0.1s; }
.about-top-single:nth-child(2) { animation-delay: 0.2s; }
.about-top-single:nth-child(3) { animation-delay: 0.3s; }

.lgx-counter-area {
    animation: slideInUp 0.6s ease forwards;
}

/* ==================== RESPONSIVE ENHANCEMENTS ==================== */
@media (max-width: 768px) {
    body {
        font-size: 18px;
    }
    
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.3rem; }
    h3 { font-size: 1.8rem; }
    h4 { font-size: 1.4rem; }
    h5 { font-size: 1.2rem; }
    h6 { font-size: 1.1rem; }
    
    p {
        font-size: 1.25rem;
    }
    
    .heading-title {
        font-size: 2.8rem;
    }
    
    .subtitle,
    .section-description {
        font-size: 1.3rem;
    }
    
    .btn,
    button,
    input[type="submit"] {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
    
    .container,
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .about-top-single,
    .lgx-counter-area {
        padding: 20px;
    }
    
    .form-control {
        font-size: 1.1rem;
    }
    
    .form-group label {
        font-size: 1.1rem;
    }
    
    .lgx-nav > li > a {
        font-size: 1.1rem;
        padding: 12px 18px;
    }
    
    .header-top {
        font-size: 1.05rem;
    }
    
    .lgx-counter {
        font-size: 2.8rem;
    }
    
    .counter-text small {
        font-size: 1.1rem;
    }
    
    .contact-info .text h4 {
        font-size: 1.2rem;
    }
    
    .contact-info .text p {
        font-size: 1.1rem;
    }
    
    .gallery-content p,
    .about-top-single p {
        font-size: 1.15rem;
    }
    
    .breadcrumb {
        font-size: 1.05rem;
    }
    
    .lgx-footer-single ul li a {
        font-size: 1.05rem;
    }
    
    /* Header social media responsive - tablet */
    .header-top .right-menu ul li a {
        width: 32px; /* Reduced */
        height: 32px; /* Reduced */
        font-size: 1rem; /* Reduced */
        margin: 0 3px; /* Reduced */
        background: rgba(255, 255, 255, 0.9); /* Maintain white background */
        color: var(--primary-color);
        border: 2px solid rgba(255, 255, 255, 1);
        border-radius: 6px;
    }
    
    /* Footer social media responsive - tablet */
    .lgx-social-footer ul li a {
        width: 36px; /* Reduced */
        height: 36px; /* Reduced */
        font-size: 1rem; /* Reduced */
        margin: 0 5px; /* Reduced */
        background: var(--white); /* Pure white for contrast */
        color: var(--accent-color);
        border: 2px solid var(--white);
        border-radius: 8px;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 17px;
    }
    
    h1 { font-size: 2.3rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.6rem; }
    h4 { font-size: 1.3rem; }
    h5 { font-size: 1.15rem; }
    h6 { font-size: 1.05rem; }
    
    p {
        font-size: 1.2rem;
    }
    
    .heading-title {
        font-size: 2.3rem;
    }
    
    .subtitle,
    .section-description {
        font-size: 1.25rem;
    }
    
    .lgx-nav > li > a {
        padding: 10px 15px;
        margin: 2px 0;
        font-size: 1.05rem;
    }
    
    .btn,
    button,
    input[type="submit"] {
        font-size: 1.05rem;
        padding: 10px 20px;
    }
    
    .form-control {
        font-size: 1.05rem;
        padding: 12px 15px;
    }
    
    .form-group label {
        font-size: 1.05rem;
    }
    
    .lgx-counter {
        font-size: 2.5rem;
    }
    
    .counter-text small {
        font-size: 1.05rem;
    }
    
    .gallery-content p,
    .about-top-single p {
        font-size: 1.1rem;
    }
    
    .contact-info .text p {
        font-size: 1.05rem;
    }
    
    .breadcrumb {
        font-size: 1rem;
    }
    
    .lgx-footer-single ul li a {
        font-size: 1rem;
    }
    
    /* Header social media small mobile */
    .header-top .right-menu ul li a {
        width: 30px; /* Reduced */
        height: 30px; /* Reduced */
        font-size: 0.9rem; /* Reduced */
        margin: 0 3px; /* Reduced */
        background: rgba(255, 255, 255, 0.9); /* Maintain white background */
        color: var(--primary-color);
        border: 2px solid rgba(255, 255, 255, 1);
        border-radius: 6px;
    }
    
    /* Footer social media small mobile */
    .lgx-social-footer ul li a {
        width: 34px; /* Reduced */
        height: 34px; /* Reduced */
        font-size: 0.95rem; /* Reduced */
        margin: 0 4px; /* Reduced */
        background: var(--white); /* Pure white for contrast */
        color: var(--accent-color);
        border: 2px solid var(--white);
        border-radius: 8px;
    }
    
    /* Reduce spacing on small screens */
    .lgx-social-footer ul {
        gap: 8px;
    }
    
    .header-top .right-menu ul {
        gap: 5px;
    }
}

/* Additional medium screen adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    body {
        font-size: 19px;
    }
    
    h1 { font-size: 3.2rem; }
    h2 { font-size: 2.7rem; }
    h3 { font-size: 2.2rem; }
    
    p {
        font-size: 1.3rem;
    }
    
    .heading-title {
        font-size: 3.2rem;
    }
    
    .subtitle,
    .section-description {
        font-size: 1.35rem;
    }
    
    .lgx-nav > li > a {
        font-size: 1.15rem;
    }
    
    .form-control {
        font-size: 1.15rem;
    }
    
    .form-group label {
        font-size: 1.15rem;
    }
}

/* ==================== ACCESSIBILITY IMPROVEMENTS ==================== */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==================== UTILITY CLASSES ==================== */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: var(--gradient-primary);
}

.shadow-sm { box-shadow: var(--box-shadow); }
.shadow-lg { box-shadow: var(--box-shadow-lg); }
.shadow-xl { box-shadow: var(--box-shadow-xl); }

.rounded { border-radius: var(--border-radius); }
.rounded-lg { border-radius: var(--border-radius-lg); }
.rounded-xl { border-radius: var(--border-radius-xl); }

.transition { transition: var(--transition); }

/* ==================== SCROLLBAR STYLING ==================== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* ==================== SELECTION STYLING ==================== */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--white);
} 