/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: 
        radial-gradient(1200px 500px at 10% -10%, rgba(14,165,233,0.08), transparent),
        radial-gradient(900px 400px at 110% 110%, rgba(2,132,199,0.08), transparent),
        linear-gradient(160deg, #f8fafc 0%, #f1f5f9 60%, #f8fafc 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #616971;
    color: white;
    padding: 30px 0 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.header::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    animation: subtleFloat 20s ease-in-out infinite;
}

@keyframes subtleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-2px) rotate(0.5deg); }
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-section .tagline {
    font-size: 0.85rem;
    opacity: 0.95;
    max-width: 500px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.4px;
    margin-top: 8px;
    line-height: 1.3;
    text-align: center;
}



.company-logo {
    max-height: 85px;
    width: auto;
    margin-bottom: 18px;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.company-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.2));
}













































.nav {
    position: relative;
    z-index: 1;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    justify-content: center;
    padding: 25px 30px 20px;
    position: relative;
}

.nav ul::before {
    display: none;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
    text-transform: uppercase;
}

.nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #9ca3af;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav a:hover,
.nav a.active {
    color: white;
    background: transparent;
    box-shadow: none;
    transform: translateY(-2px);
}

.nav a:hover::before,
.nav a.active::before {
    width: 100%;
    height: 3px;
    background: #9ca3af;
    box-shadow: 0 2px 4px rgba(156, 163, 175, 0.3);
}

/* Page Break */
.page-break {
    height: 8px;
    background: transparent;
    margin-bottom: 40px;
}

/* Main Content */
.main-content {
    padding: 40px 0;
    min-height: 60vh;
}







/* Accessibility */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 16px;
    margin: 60px 0;
}

.cta-section h2 {
    font-size: 2.2rem;
    color: #1f2937;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 16px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 180px;
}

.cta-button.primary {
    background: linear-gradient(135deg, #374151, #1f2937);
    color: white;
    box-shadow: 0 8px 25px rgba(55, 65, 81, 0.3);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #1f2937, #111827);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(55, 65, 81, 0.4);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #6b7280, #9ca3af);
    color: white;
    box-shadow: 0 8px 25px rgba(107, 114, 128, 0.3);
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #9ca3af, #6b7280);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(107, 114, 128, 0.4);
}

.hero-section {
    text-align: center;
    margin-bottom: 60px;
}

.hero-section h2 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 40px;
    font-weight: bold;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.86));
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(2, 6, 23, 0.08);
    backdrop-filter: blur(8px);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.12);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Image Gallery */
.image-gallery {
    margin-top: 60px;
    margin-bottom: 60px;
}

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

.gallery-item {
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.86));
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(2, 6, 23, 0.08);
    backdrop-filter: blur(8px);
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 20px;
}

.gallery-caption h3 {
    color: #1f2937;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.gallery-caption p {
    color: #6b7280;
    line-height: 1.6;
}

/* Home Section */
.home-section {
    margin-bottom: 60px;
}

.home-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    padding: 20px 0;
}

.home-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: 1px;
}

/* About Section */
.about-section {
    margin-bottom: 60px;
}

.about-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    padding: 20px 0;
}

.me-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #f8fafc 0%, #f1f5f9 60%, #f8fafc 100%);
    padding: 10px 15px;
    border-radius: 8px;
    margin-right: -10px;
}

.me-logo-img {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
}

.vertical-line {
    width: 3px;
    height: 60px;
    background: linear-gradient(180deg, #1f2937, #374151);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: 1px;
}

/* Services Header - Same styling as About Header */
.services-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    padding: 20px 0;
}

.services-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: 1px;
}

/* Partners Header - Same styling as About Header */
.partners-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    padding: 20px 0;
}

.partners-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: 1px;
}

/* Contact Header - Same styling as About Header */
.contact-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    padding: 20px 0;
}

.contact-header-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: 1px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #374151;
    text-align: justify;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services-section {
    margin-bottom: 60px;
}

.services-section h2 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.services-intro {
    text-align: center;
    margin-bottom: 50px;
}

.services-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #374151;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

.services-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.service-category {
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.86));
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
    border: 1px solid rgba(2, 6, 23, 0.08);
    backdrop-filter: blur(8px);
}

.service-category h3 {
    color: #111827;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #374151;
    padding-bottom: 10px;
}

.service-category ul {
    list-style: none;
}

.service-category li {
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
    padding-left: 25px;
}

.service-category li:last-child {
    border-bottom: none;
}

.service-category li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6b7280;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-areas {
    text-align: center;
}

.service-areas h3 {
    color: #111827;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.service-area-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transform: translateY(2px);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.area {
    background: linear-gradient(135deg, #374151, #1f2937);
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 24px rgba(31, 41, 55, 0.25);
}

.area:hover {
    background: linear-gradient(135deg, #1f2937, #111827);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(31, 41, 55, 0.35);
}

/* Testimonials Section */
.testimonials-section h2 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
}

.testimonial-carousel {
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.86));
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
    margin-bottom: 50px;
    border: 1px solid rgba(2, 6, 23, 0.08);
    backdrop-filter: blur(8px);
    position: relative;
}

.testimonial-carousel::before {
    content: '← Swipe to change →';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #6b7280;
    opacity: 0.7;
    pointer-events: none;
    display: none;
}

@media (max-width: 768px) {
    .testimonial-carousel::before {
        display: block;
    }
}

.testimonial-container {
    position: relative;
    overflow: visible;
    padding: 20px;
    touch-action: pan-y pinch-zoom;
    user-select: none;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: center;
    overflow: visible;
}

.testimonial-content img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #374151;
  box-shadow: 0 8px 25px rgba(55, 65, 81, 0.3);
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #374151, #1f2937);
  margin: 0 auto 25px;
  display: block;
  position: relative;
  z-index: 1;
}

.testimonial-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    border-color: #374151;
    z-index: 10;
}

.testimonial-text {
    padding: 20px;
}

.rating {
    color: #6b7280;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 20px;
    border-left: 4px solid #374151;
    padding-left: 20px;
}

.testimonial-author h4 {
    color: #1f2937;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: #6b7280;
    margin-bottom: 5px;
}

.project-type {
    font-weight: 600;
    color: #6b7280;
    font-size: 0.9rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.carousel-btn {
    background: linear-gradient(135deg, #374151, #1f2937, #111827);
    color: white;
    border: none;
    padding: 16px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(55, 65, 81, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.carousel-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.6s ease;
}

.carousel-btn:hover::before {
    left: 100%;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #111827, #1f2937, #374151);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(31, 41, 55, 0.4), 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 8px 25px rgba(31, 41, 55, 0.3);
}

.carousel-btn.prev {
    background: linear-gradient(135deg, #6b7280, #374151, #1f2937);
    box-shadow: 0 8px 25px rgba(31, 41, 55, 0.3);
}

.carousel-btn.prev:hover {
    background: linear-gradient(135deg, #374151, #1f2937, #111827);
    box-shadow: 0 15px 35px rgba(31, 41, 55, 0.4), 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn.next {
    background: linear-gradient(135deg, #374151, #1f2937, #111827);
    box-shadow: 0 8px 25px rgba(31, 41, 55, 0.3);
}

.carousel-btn.next:hover {
    background: linear-gradient(135deg, #111827, #1f2937, #374151);
    box-shadow: 0 15px 35px rgba(31, 41, 55, 0.4), 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d1d5db, #9ca3af);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.dot:hover {
    background: linear-gradient(135deg, #9ca3af, #6b7280);
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dot.active {
    background: linear-gradient(135deg, #374151, #1f2937);
    box-shadow: 0 4px 15px rgba(31, 41, 55, 0.4);
    transform: scale(1.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.partners-section {
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.86));
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
    border: 1px solid rgba(2, 6, 23, 0.08);
    backdrop-filter: blur(8px);
}

.partners-section h3 {
    color: #111827;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.partners-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
    transform: translateY(4px);
}

.partner-info h4 {
    color: #111827;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.partner-info p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.sport-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.sport-type {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.sport-type h5 {
    color: #111827;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.sport-type p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 60px;
}

.contact-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #6b7280;
  margin-bottom: 60px;
}

.partners-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #6b7280;
  margin-bottom: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.86));
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  border: 1px solid rgba(2, 6, 23, 0.08);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  margin-bottom: 0;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(2, 6, 23, 0.12);
}

.contact-card h3 {
  color: #1f2937;
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 2px solid #374151;
  padding-bottom: 10px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
  display: block;
  border-radius: 12px;
  height: 380px;
}

.contact-detail {
    margin-bottom: 15px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-detail strong {
    color: #374151;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #6b7280, #9ca3af);
    border-radius: 6px;
    color: white;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(107, 114, 128, 0.3);
}

.contact-icon::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.6s ease;
}

.contact-icon:hover::before {
    left: 100%;
}

.contact-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.5);
    background: linear-gradient(135deg, #9ca3af, #6b7280);
}

.contact-icon svg {
    width: 16px;
    height: 16px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.contact-text {
    flex: 1;
}

.contact-link {
    color: #374151;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #1f2937;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    background: linear-gradient(135deg, #374151, #1f2937);
    color: white;
    padding: 10px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(31, 41, 55, 0.25);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-link:hover {
    background: linear-gradient(135deg, #1f2937, #111827);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(31, 41, 55, 0.35);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.service-areas-list {
    line-height: 1.8;
}

.service-areas-list div {
    margin-bottom: 8px;
    color: #374151;
}

.contact-form {
    margin-top: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #374151;
}

.submit-btn {
    background: linear-gradient(135deg, #374151, #1f2937);
    color: white;
    padding: 16px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    box-shadow: 0 10px 24px rgba(55, 65, 81, 0.25);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #1f2937, #111827);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(55, 65, 81, 0.35);
}

.form-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #6b7280;
    text-align: center;
}

/* Footer */
.footer {
  background: #616971;
  color: white;
  padding: 60px 0 30px;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  text-align: left;
}

.footer-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: white;
  border-bottom: 2px solid white;
  padding-bottom: 10px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.5;
}

.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: white;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-contact-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.footer-contact-icon:hover::before {
  left: 100%;
}

.footer-contact-icon:hover {
  background: white;
  color: #616971;
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: black;
}

/* Footer Social Media Links */
.footer-social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.footer-social-link:hover::before {
  left: 100%;
}

.footer-social-link:hover {
  background: white;
  color: #616971;
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-links li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.5;
  transition: color 0.3s ease;
  display: block;
  padding: 8px 0;
}

.footer-links li a:hover,
.footer-links li a.active {
  color: black;
  transform: translateX(5px);
}

.footer-service-areas {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-service-areas li {
  color: white;
  font-size: 1rem;
  line-height: 1.5;
  padding: 6px 0;
  border-left: 3px solid transparent;
  padding-left: 15px;
  transition: all 0.3s ease;
}

.footer-service-areas li:hover {
  border-left-color: black;
  color: black;
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 25px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    

    
    .header {
        padding: 20px 0 20px;
    }
    
    .header-content {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .logo-section {
        align-items: center;
        text-align: center;
    }
    
    .company-logo {
        max-height: 65px;
        margin: 0 auto 15px auto;
    }
    
    .logo-section .tagline {
        text-align: center;
        font-size: 0.7rem;
        font-weight: 600;
        font-style: italic;
        letter-spacing: 0.3px;
        line-height: 1.3;
        max-width: 350px;
        margin: 0 auto;
    }
    

    

    

    

    

    

    

    

    
    /* Mobile Nav Layout */
    .nav {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 30px 25px;
        background: none;
        border-top: none;
        margin: 15px 0;
    }
    
    .nav ul {
        display: grid;
        grid-template-columns: repeat(3, auto);
        grid-template-rows: auto auto;
        gap: 4px 4px;
        row-gap: 12px;
        padding: 20px 0 0 0;
        margin: 0;
        list-style: none;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    
    .nav ul::before {
        display: none;
    }
    
    /* First row: Home, About, Services */
    .nav ul li:nth-child(1) { grid-column: 1; grid-row: 1; }
    .nav ul li:nth-child(2) { grid-column: 2; grid-row: 1; }
    .nav ul li:nth-child(3) { grid-column: 3; grid-row: 1; }
    
    /* Second row: Partners & Testimonials, Contact */
    .nav ul li:nth-child(4) { grid-column: 1 / span 2; grid-row: 2; }
    .nav ul li:nth-child(5) { grid-column: 3; grid-row: 2; margin-left: 8px; }
    
    .nav a {
        color: white;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.8rem;
        padding: 8px 12px;
        border-radius: 8px;
        transition: all 0.3s ease;
        background: transparent;
        backdrop-filter: none;
        border: none;
        white-space: nowrap;
        display: inline-block;
        text-align: center;
        width: auto;
        min-width: fit-content;
        box-sizing: border-box;
        text-transform: uppercase;
    }
    
    .nav a:hover,
    .nav a.active {
        color: white;
        background: transparent;
        transform: translateY(-2px);
        box-shadow: none;
        border: none;
    }
    
    .nav a:hover::before,
    .nav a.active::before {
        width: 100%;
        height: 3px;
        background: #9ca3af;
        box-shadow: 0 2px 4px rgba(156, 163, 175, 0.3);
    }
    
    .nav a::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: #9ca3af;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-categories {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-content {
        grid-template-columns: 1fr;
        touch-action: pan-y pinch-zoom;
    }
    
    .testimonial-content img {
        height: 200px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .sport-types {
        grid-template-columns: 1fr;
    }
}

/* Tablet-specific styles for Android tablets and similar devices */
@media (min-width: 768px) and (max-width: 1024px) {
    .header-content {
        text-align: center;
        align-items: center;
    }
    
    .logo-section {
        align-items: center;
        text-align: center;
    }
    
    .company-logo {
        margin: 0 auto 15px auto;
    }
    
    .logo-section .tagline {
        text-align: center;
        margin: 0 auto;
    }
    

    

    
    .nav {
        padding: 35px 30px;
        margin: 20px 0;
    }
    
    .nav ul {
        gap: 6px 6px;
        row-gap: 15px;
        padding: 25px 0 0 0;
    }
    
    .nav a {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .nav a:hover,
    .nav a.active {
        transform: translateY(-2px);
        box-shadow: none;
    }
}

/* Tablet horizontal view styles */
@media (min-width: 1024px) and (max-width: 1366px) {
    .nav a:hover,
    .nav a.active {
        color: white;
        background: transparent;
        box-shadow: none;
    }
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.service-area-item {
    background: linear-gradient(135deg, #374151, #1f2937);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(55, 65, 81, 0.25);
}

.service-area-item:hover {
    background: linear-gradient(135deg, #1f2937, #111827);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(55, 65, 81, 0.35);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-section {
    padding: 20px 15px;
    margin-top: -20px;
  }
  
  .page-break {
    margin-bottom: 20px;
  }
  
  .contact-card {
    padding: 20px;
  }
  
  .map-container iframe {
    height: 330px;
  }
  
  /* Home Header Mobile */
  .home-header {
    gap: 12px;
    margin-bottom: 30px;
    padding: 15px 0;
  }
  
  .home-text {
    font-size: 2rem;
    letter-spacing: 0.8px;
  }
  
  /* About Header Mobile */
  .about-header {
    gap: 12px;
    margin-bottom: 30px;
    padding: 15px 0;
  }
  
  .me-logo {
    padding: 8px 12px;
    margin-right: -10px;
  }
  
  .me-logo-img {
    height: 2rem;
  }
  
  .vertical-line {
    width: 2px;
    height: 45px;
  }
  
  .about-text {
    font-size: 2rem;
    letter-spacing: 0.8px;
  }
  
  .services-header {
    gap: 12px;
    margin-bottom: 30px;
    padding: 15px 0;
  }
  
  .services-text {
    font-size: 2rem;
    letter-spacing: 0.8px;
  }
  
  .partners-header {
    gap: 12px;
    margin-bottom: 30px;
    padding: 15px 0;
  }
  
  .partners-text {
    font-size: 2rem;
    letter-spacing: 0.8px;
    line-height: 0.9;
  }
  
  .contact-header {
    gap: 12px;
    margin-bottom: 30px;
    padding: 15px 0;
  }
  
  .contact-header-text {
    font-size: 2rem;
    letter-spacing: 0.8px;
  }
  
  /* Footer Responsive */
  .footer {
    padding: 40px 0 25px;
    margin-top: 40px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .footer-column {
    text-align: center;
  }
  
  .footer-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  
  .footer-contact-info {
    gap: 15px;
  }
  
  .footer-contact-item {
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
  }
  
  .footer-contact-icon {
    width: 28px;
    height: 28px;
  }
  
  .footer-links {
    gap: 1px;
  }
  
  .footer-links li a {
    font-size: 0.95rem;
    padding: 6px 0;
  }
  
  .footer-links li a:hover,
  .footer-links li a.active {
    color: black;
    transform: translateX(3px);
  }
  
  .footer-service-areas {
    gap: 10px;
  }
  
  .footer-service-areas li {
    font-size: 0.95rem;
    padding: 5px 0;
    padding-left: 20px;
  }
  
  .footer-bottom {
    padding-top: 20px;
  }
  
  .footer-bottom p {
    font-size: 0.9rem;
  }
  
  /* Footer Social Media Mobile Centering */
  .footer-social-links {
    justify-content: center;
    margin: 15px auto 0 auto;
  }
  
  .footer-social-link {
    width: 36px;
    height: 36px;
  }
  
  .footer-social-link svg {
    width: 18px;
    height: 18px;
  }
  
  /* Mobile CTA Section */
  .cta-section {
    padding: 40px 15px;
    margin: 40px 0;
  }
  
  .cta-section h2 {
    font-size: 1.8rem;
  }
  
  .cta-section p {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
  .footer-social-links {
    gap: 12px;
  }
  
  .footer-social-link {
    width: 32px;
    height: 32px;
  }
  
  .footer-social-link svg {
    width: 16px;
    height: 16px;
  }
}

.contact-form-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-form-container .contact-card {
  margin-bottom: 0;
}

.contact-form-container .contact-card:last-child {
  margin-bottom: 0;
}

.contact-section h2 {
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

/* Favicon Enhancement */
link[rel="icon"],
link[rel="shortcut icon"],
link[rel="apple-touch-icon"] {
  filter: brightness(0) saturate(100%);
}

/* Ensure favicon is visible in all contexts */
.favicon-container {
  display: inline-block;
  vertical-align: middle;
}

/* Black theme for favicon display */
[data-theme="dark"] link[rel="icon"],
[data-theme="dark"] link[rel="shortcut icon"] {
  filter: brightness(1) saturate(100%);
}

/* Contact Form Enhancements */
.form-message {
  margin-top: 15px;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
}

.form-message.success {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #10b981;
}

.form-message.error {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #ef4444;
}

.submit-btn {
  position: relative;
  transition: all 0.3s ease;
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loading {
  display: none;
}

/* Form validation styles - removed red borders */

/* Service Images use the same gallery styles as About page */
