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

html {
    scroll-behavior: smooth;
}

/* Import modern font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #87CEEB 0%, #98D8E8 25%, #B0E0E6 50%, #E0F6FF 75%, #F0F8FF 100%);
    color: #2c3e50;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    min-height: 100vh;
    font-weight: 400;
}

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

/* Aviation-Themed Animated Background */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #87CEEB 0%, #98D8E8 25%, #B0E0E6 50%, #E0F6FF 75%, #F0F8FF 100%);
    overflow: hidden;
    /* Add floating clouds animation */
    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 15%, transparent 20%),
            radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.2) 20%, transparent 25%),
            radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.25) 18%, transparent 23%),
            radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.3) 22%, transparent 27%);
        animation: cloudFloat 20s ease-in-out infinite;
    }
}

@keyframes cloudFloat {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(20px) translateY(-10px); }
    50% { transform: translateX(-15px) translateY(5px); }
    75% { transform: translateX(10px) translateY(-5px); }
}

/* Enhanced 3D Layered Stars */
.aviation-star {
    position: absolute;
    background: #ffffff;
    border-radius: 50%;
    animation: twinkle ease-in-out infinite;
    will-change: transform, opacity;
}

@keyframes twinkle {
    0% { 
        opacity: 0.2; 
        transform: scale(0.8);
        box-shadow: 0 0 4px #4A90E2;
    }
    25% { 
        opacity: 0.8; 
        transform: scale(1.1);
        box-shadow: 0 0 12px #4A90E2, 0 0 20px rgba(74, 144, 226, 0.4);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.3);
        box-shadow: 0 0 16px #4A90E2, 0 0 24px rgba(74, 144, 226, 0.6);
    }
    75% { 
        opacity: 0.6; 
        transform: scale(1);
        box-shadow: 0 0 8px #4A90E2, 0 0 16px rgba(74, 144, 226, 0.3);
    }
    100% { 
        opacity: 0.2; 
        transform: scale(0.8);
        box-shadow: 0 0 4px #4A90E2;
    }
}

/* Smooth 3D Parallax Clouds */
.aviation-cloud {
    position: absolute;
    color: rgba(255, 255, 255, 0.2);
    user-select: none;
    pointer-events: none;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    will-change: transform;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    /* Remove transitions for smoother scroll-based movement */
    transition: none;
}



/* Air Current Particles */
.aviation-particle {
    position: absolute;
    width: 1px;
    height: 1px;
    background: rgba(74, 144, 226, 0.3);
    border-radius: 50%;
    animation: floatParticle 8s ease-in-out infinite;
}

@keyframes floatParticle {
    0%, 100% { 
        opacity: 0;
        transform: translateY(0px) translateX(0px);
    }
    50% { 
        opacity: 0.6;
        transform: translateY(-20px) translateX(10px);
    }
}

/* Additional atmospheric effects */
.particles-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 188, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(74, 144, 226, 0.05) 0%, transparent 50%);
    animation: atmosphericGlow 15s ease-in-out infinite;
}

@keyframes atmosphericGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Navigation */
.navbar {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-left: none;
    border-right: none;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(74, 144, 226, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    height: 70px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.brand-logo:hover {
    filter: brightness(1.2) contrast(1.2);
    transform: scale(1.05);
}

.brand-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.brand-tagline {
    color: #4A90E2;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
    opacity: 1;
    margin-top: 4px;
    letter-spacing: 5.5px;
    text-shadow: 0 1px 3px rgba(74, 144, 226, 0.2);
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 35px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.nav-link:hover {
    color: #4A90E2;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #4A90E2;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-link {
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: #4A90E2;
    background: rgba(74, 144, 226, 0.1);
    transform: translateY(-2px);
}

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

.social-link i {
    font-size: 18px;
}

/* Instagram and YouTube specific navigation styling */
.instagram-nav:hover {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
}

.youtube-nav:hover {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 50px;
    position: relative;
    overflow: hidden;
}

/* Hero Video Container */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-video.active {
    opacity: 1;
}

/* Video overlay removed for clear video display */

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(74, 144, 226, 0.2);
    border: 1px solid rgba(74, 144, 226, 0.4);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.badge-text {
    color: #4A90E2;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-title {
    margin-bottom: 30px;
}

.title-line-1,
.title-line-2 {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
}

.title-line-1 {
    background: linear-gradient(135deg, #ffffff 0%, #4A90E2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line-2 {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #b8c5d6;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #4A90E2;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #b8c5d6;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Video Controls */
.video-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
}

.video-progress {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    margin-bottom: 15px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4A90E2 0%, #357ABD 100%);
    width: 0%;
    transition: width 0.1s linear;
}

.video-indicators {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #4A90E2;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background: linear-gradient(135deg, #1a1f2e 0%, #2a2f3e 100%);
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(53, 122, 189, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(74, 144, 226, 0.6);
    box-shadow: 0 25px 50px rgba(74, 144, 226, 0.25);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.4);
}

.feature-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover h3 {
    transform: translateY(-2px);
}

.feature-card p {
    color: #000000;
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-card:hover p {
    color: #000000;
    transform: translateY(-2px);
}

/* Section Divider */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #4A90E2 50%, transparent 100%);
    margin: 0;
    opacity: 0.6;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-text p {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(26, 31, 46, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(74, 144, 226, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(26, 31, 46, 0.8);
    border-color: rgba(74, 144, 226, 0.4);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.feature-item span:last-child {
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    position: relative;
}

.services-section .container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 60px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.services-section .section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.services-section .section-header h1,
.services-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #000000;
    position: relative;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.services-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #000000;
    border-radius: 2px;
}

.services-section .section-header p {
    font-size: 1.3rem;
    color: #2c3e50;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-top: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

.service-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 350px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(74, 144, 226, 0.4);
}

.service-card .image-container {
    width: 100%;
    max-width: 280px;
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    margin: 15px 0;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.service-card:hover .image-container img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 10px 0;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex-shrink: 0;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .service-description {
    font-size: 1rem;
    color: #2c3e50;
    line-height: 1.5;
    letter-spacing: 0.2px;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Service Details (Expandable Content) */
.service-details {
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    margin-top: 0;
    padding-top: 0;
    width: 100%;
    text-align: center;
    transform: translateY(-10px);
}

.service-card:hover .service-details {
    max-height: 400px;
    opacity: 1;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(74, 144, 226, 0.2);
    transform: translateY(0);
}

.service-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #4A90E2;
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-details p {
    font-size: 0.95rem;
    color: #2c3e50;
    line-height: 1.6;
    margin: 0;
}

.service-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-details li {
    padding: 8px 0;
    color: #2c3e50;
    line-height: 1.4;
    letter-spacing: 0.2px;
    position: relative;
    padding-left: 20px;
}

.service-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4A90E2;
    font-weight: bold;
    font-size: 0.9rem;
}

.service-details li strong {
    color: #000000;
    font-weight: 600;
}

.service-details p {
    font-size: 0.95rem;
    color: #2c3e50;
    line-height: 1.5;
    letter-spacing: 0.2px;
    font-style: italic;
    background: rgba(74, 144, 226, 0.1);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #4A90E2;
}

/* Expand/Collapse Indicator - Removed */

/* Responsive Design for Service Cards */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 100%;
    }
    
    .service-card .image-container {
        height: 180px;
    }
    
    .service-card h2 {
        font-size: 1.3rem;
    }
    
    .service-card .service-description {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .service-details h3 {
        font-size: 1.1rem;
    }
    
    .service-details li {
        font-size: 0.9rem;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    padding: 60px 20px;
    text-align: center;
    margin: 80px 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 0;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.main-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #00bcd4 0%, #673ab7 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    margin-top: 30px;
    text-align: center;
    line-height: 1.4;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
    position: relative;
    overflow: hidden;
    max-width: 400px;
}

.main-cta-button .cta-description {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    margin-top: 5px;
    opacity: 0.9;
    line-height: 1.3;
}

.main-cta-button:hover {
    background: linear-gradient(135deg, #00acc1 0%, #5e35b1 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
}

/* Why Choose Us Section - Glassmorphism Design */
.why-choose-us {
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.why-choose-us .container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 60px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-choose-us .section-header {
    margin-bottom: 4rem;
}

.why-choose-us .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.underline {
    width: 80px;
    height: 4px;
    background: #000000;
    margin: 0 auto;
    border-radius: 2px;
}

/* Why Choose Us Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.3);
    border-color: rgba(74, 144, 226, 0.5);
}

.icon-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00bcd4 0%, #673ab7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.3);
}

.feature-card:hover .icon-container {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 188, 212, 0.4);
}

.icon-container i {
    font-size: 2.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.feature-card:hover .icon-container i {
    transform: scale(1.1);
}

.feature-card h3 {
    color: #1a252f;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.feature-card:hover h3 {
    color: #2980b9;
}

.feature-card p {
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.feature-card:hover p {
    color: #1a252f;
}



/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
}

.gallery-section .section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.gallery-section .section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #000000;
    position: relative;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gallery-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #000000;
    border-radius: 2px;
}

.gallery-section .section-header p {
    font-size: 1.3rem;
    color: #000000;
    line-height: 1.6;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

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

.gallery-intro {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-intro p {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.social-gallery-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.gallery-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    text-decoration: none;
    color: #1a252f;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.gallery-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(53, 122, 189, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-link:hover::before {
    opacity: 1;
}

.gallery-link:hover {
    transform: translateY(-5px);
    border-color: rgba(74, 144, 226, 0.6);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.2);
}

.instagram-link:hover {
    border-color: rgba(225, 48, 108, 0.6);
    box-shadow: 0 15px 40px rgba(225, 48, 108, 0.2);
}

.youtube-link:hover {
    border-color: rgba(255, 0, 0, 0.6);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.2);
}

.gallery-link i {
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.instagram-link i {
    color: #E1306C;
}

.youtube-link i {
    color: #ff0000;
}

.gallery-link span {
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    color: #000000;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.gallery-link small {
    font-size: 0.9rem;
    color: #000000;
    position: relative;
    z-index: 2;
    font-weight: 600;
}

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

.gallery-item {
    background: linear-gradient(135deg, #1a1f2e 0%, #2a2f3e 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(74, 144, 226, 0.3);
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(53, 122, 189, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: rgba(74, 144, 226, 0.6);
    box-shadow: 0 25px 50px rgba(74, 144, 226, 0.2);
}

.gallery-placeholder {
    padding: 60px 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.gallery-placeholder i {
    font-size: 3rem;
    color: #4A90E2;
    margin-bottom: 20px;
    display: block;
}

.gallery-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.gallery-placeholder small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* About Us Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.about-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

.about-subtitle {
    font-size: 1.3rem;
    color: #b8c5d6;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

.about-content {
    max-width: 100%;
}

/* Article-style sections */
.about-article-section {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.about-article-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.section-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.section-icon i {
    font-size: 1.8rem;
    color: white;
}

.section-content {
    flex: 1;
}

.section-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-content p {
    color: #000000;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 15px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.section-content p:last-child {
    margin-bottom: 0;
}

/* Values list - vertical layout */
.values-list {
    margin-top: 25px;
}

.value-item-vertical {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.value-item-vertical:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.value-item-vertical:last-child {
    margin-bottom: 0;
}

.value-icon-small {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.value-icon-small i {
    font-size: 1.1rem;
    color: white;
}

.value-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.value-text p {
    color: #000000;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Equipment Features Grid - Match Values Grid Layout Exactly */
.equipment-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
    align-items: start;
}

@media (max-width: 768px) {
    .equipment-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Use exact same styling as value-item for consistency */
.equipment-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-height: 120px;
    height: 100%;
}

.equipment-feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(74, 144, 226, 0.2);
    transform: translateY(-2px);
}

/* Match value-icon styling exactly */
.feature-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.feature-icon i {
    font-size: 1.2rem;
    color: white;
}

/* Match value-content styling exactly */
.feature-card-header {
    flex: 1;
}

.feature-card-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.feature-card-content p {
    font-size: 0.95rem;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.about-cta-section {
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(53, 122, 189, 0.1) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 25px;
    padding: 40px;
    margin-top: 20px;
    flex-direction: column;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
}

.cta-icon i {
    font-size: 2rem;
    color: white;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
}

.cta-content p {
    font-size: 1.1rem;
    color: #b8c5d6;
    margin-bottom: 25px;
    line-height: 1.6;
    max-width: 600px;
    font-weight: 300;
}

.cta-button-modern {
    display: inline-block;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.cta-button-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.4);
    text-decoration: none;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-article-section {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }
    
    .section-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .value-item-vertical,
    .equipment-item {
        flex-direction: column;
        text-align: center;
    }
    
    .value-icon-small,
    .equipment-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .about-header h2 {
        font-size: 2.2rem;
    }
    
    .section-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
}

.gallery-content {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-intro {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-intro p {
    font-size: 1.2rem;
    color: #000000;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Social Gallery Links */
.social-gallery-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.gallery-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 35px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
}

.gallery-link:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(74, 144, 226, 0.3);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.2);
}

.instagram-link {
    border-color: rgba(225, 48, 108, 0.3);
}

.instagram-link:hover {
    border-color: rgba(225, 48, 108, 0.5);
    box-shadow: 0 15px 35px rgba(225, 48, 108, 0.2);
}

.youtube-link {
    border-color: rgba(255, 0, 0, 0.3);
}

.youtube-link:hover {
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.2);
}

.gallery-link i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #4A90E2;
}

.instagram-link i {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.youtube-link i {
    color: #ff0000;
}

.gallery-link span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 5px;
}

.gallery-link small {
    font-size: 0.9rem;
    color: #000000;
}

/* Instagram Embed Section */
.instagram-embed-section {
    margin-bottom: 60px;
}

.embed-header {
    text-align: center;
    margin-bottom: 40px;
}

.embed-header h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.embed-header p {
    font-size: 1.1rem;
    color: #000000;
    max-width: 600px;
    margin: 0 auto;
}

.instagram-embed-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Instagram Placeholder */
.instagram-placeholder {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
}

.placeholder-content i {
    font-size: 4rem;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
}

.placeholder-content h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
}

.placeholder-content p {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.6;
}

.placeholder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.placeholder-post {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.placeholder-post:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
}

.placeholder-post i {
    font-size: 1.5rem;
    color: #4A90E2;
    margin-bottom: 10px;
}

.placeholder-post span {
    font-size: 0.9rem;
    color: #b8c5d6;
    font-weight: 500;
}

/* Portfolio Preview */
.portfolio-preview {
    margin-top: 60px;
}

.preview-header {
    text-align: center;
    margin-bottom: 40px;
}

.preview-header h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.preview-header p {
    font-size: 1.1rem;
    color: #000000;
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.gallery-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.15);
    border-color: rgba(74, 144, 226, 0.3);
}

.gallery-placeholder {
    padding: 60px 30px;
    text-align: center;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gallery-placeholder i {
    font-size: 3rem;
    color: #4A90E2;
    margin-bottom: 20px;
}

.gallery-placeholder p {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.gallery-placeholder small {
    font-size: 1rem;
    color: #b8c5d6;
    line-height: 1.5;
}

/* CTA Divider Section Styles */
.cta-divider-section {
    padding: 80px 0;
    background: transparent;
    position: relative;
}

.cta-divider {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 60px 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.cta-divider:hover {
    transform: translateY(-5px);
    border-color: rgba(74, 144, 226, 0.3);
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.1);
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 15px 35px rgba(74, 144, 226, 0.4);
    }
    50% {
        box-shadow: 0 15px 35px rgba(74, 144, 226, 0.6), 0 0 0 10px rgba(74, 144, 226, 0.1);
    }
    100% {
        box-shadow: 0 15px 35px rgba(74, 144, 226, 0.4);
    }
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 20px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.cta-content p {
    font-size: 1.2rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-button-modern {
    display: inline-block;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-button-modern::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;
}

.cta-button-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-button-modern:hover::before {
    left: 100%;
}

/* About Section Styles */
.about-section {
    padding: 100px 0;
    background: transparent;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 60px 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-subtitle {
    font-size: 1.2rem;
    color: #000000;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 35px;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.about-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(74, 144, 226, 0.2);
    transform: translateY(-2px);
}

/* Ensure equipment card has identical styling to regular about-card */
.about-card.equipment-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 35px;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.about-card.equipment-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(74, 144, 226, 0.2);
    transform: translateY(-2px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.card-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.card-content {
    color: #000000;
    line-height: 1.7;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.card-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #000000;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.equipment-intro {
    margin-bottom: 30px;
}

.equipment-intro p {
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.7;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
    align-items: start;
}

.equipment-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
    align-items: start;
}

@media (max-width: 992px) {
    .equipment-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-item,
.equipment-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-height: 120px;
    height: 100%;
}

.value-item:hover,
.equipment-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(74, 144, 226, 0.2);
    transform: translateY(-2px);
}

.value-icon,
.equipment-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.value-content,
.equipment-content {
    flex: 1;
}

.value-content h4,
.equipment-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.value-content p,
.equipment-content p {
    font-size: 0.95rem;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Equipment Feature Cards */
.equipment-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .equipment-features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .equipment-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.equipment-feature-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.equipment-feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(74, 144, 226, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.feature-card-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a252f;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.feature-card-content p {
    font-size: 0.9rem;
    color: #2c3e50;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}



@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }
    
    /* Gallery Section Mobile */
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-section .section-header h2 {
        font-size: 2.5rem;
    }
    
    .social-gallery-links {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .gallery-link {
        padding: 20px 25px;
        min-width: 250px;
        max-width: 300px;
    }
    
    .gallery-link i {
        font-size: 2rem;
    }
    
    .instagram-embed-section {
        margin-bottom: 40px;
    }
    
    .instagram-placeholder {
        padding: 30px 20px;
    }
    
    .placeholder-content i {
        font-size: 3rem;
    }
    
    .placeholder-content h4 {
        font-size: 1.5rem;
    }
    
    .placeholder-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .placeholder-post {
        padding: 15px;
    }
    
    .embed-header h3,
    .preview-header h3 {
        font-size: 1.6rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-placeholder {
        padding: 40px 20px;
        height: 200px;
    }
    
    .gallery-placeholder i {
        font-size: 2.5rem;
    }
    
    /* CTA Divider Mobile Styles */
    .cta-divider-section {
        padding: 60px 0;
    }
    
    .cta-divider {
        margin: 0 20px;
        padding: 40px 25px;
        border-radius: 15px;
    }
    
    .cta-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .cta-content h3 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .cta-button-modern {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 60px 0;
    }
    
    .about-container {
        margin: 0 20px;
        padding: 40px 25px;
        border-radius: 20px;
        background: rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
    
    .about-header {
        margin-bottom: 40px;
    }
    
    .about-header h2 {
        font-size: 2.5rem;
    }
    
    .about-content {
        padding: 0 25px 30px 25px;
        gap: 35px;
    }
    
    .story-mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .story-block,
    .mission-block {
        padding: 25px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-item {
        padding: 20px;
    }
    
    .gear-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .cta-block {
        padding: 30px 25px;
    }
    
    .cta-block h3 {
        font-size: 1.8rem;
    }
    
    .cta-block p {
        font-size: 1.1rem;
    }

    .why-choose-us .section-header h2 {
        font-size: 2rem;
    }
    
    .why-choose-us .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-choose-us .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .why-choose-us .icon-container {
        width: 70px;
        height: 70px;
    }
    
    .why-choose-us .icon-container i {
        font-size: 1.75rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000000;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonials-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #000000;
    margin: 15px auto 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.1);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    color: #34495e;
    font-style: italic;
    line-height: 1.7;
    font-size: 0.95rem;
}

.testimonial-author strong {
    color: #2c3e50;
    font-size: 1rem;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #4A90E2;
    font-size: 0.85rem;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    position: relative;
}

.contact-section .container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 60px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #000000;
    margin: 20px auto;
}

.contact-subtitle {
    text-align: center;
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form {
    background: rgba(255, 255, 255, 0.15);
    padding: 60px 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    max-width: 800px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-form:hover {
    border-color: rgba(74, 144, 226, 0.5);
    box-shadow: 0 25px 50px rgba(74, 144, 226, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(52, 152, 219, 0.4);
    border-radius: 12px;
    color: #1a252f;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-sizing: border-box;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #5d6d7e;
    font-size: 1rem;
    font-weight: 500;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    padding: 10px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    padding: 20px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.4);
    background: linear-gradient(135deg, #5BA0F2 0%, #4A8ACD 100%);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Footer */
.footer {
    padding: 30px 0;
    text-align: center;
    position: relative;
}

.footer .container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.footer p {
    color: #2c3e50;
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Responsive Design */
@media (max-width: 768px) {
.hero-section {
padding: 80px 15px 40px;
}
    
.title-line-1,
.gallery-link i {
font-size: 1.5rem;
}
    
.gallery-link span {
font-size: 1rem;
}
    
/* CTA Divider Mobile Styles */
.cta-divider-section {
padding: 60px 0;
}
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .video-controls {
        bottom: 20px;
    }
    
    .video-progress {
        width: 150px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .equipment-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .equipment-feature-card {
        padding: 25px;
    }
    
    .feature-card-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-card-header h4 {
        font-size: 1.1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .brand-logo {
        height: 55px;
        max-width: 220px;
    }
    
    .brand-name {
        font-size: 1.6rem;
    }
    
    .brand-tagline {
        font-size: 0.8rem;
    }
    
    .nav-logo {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .equipment-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .equipment-feature-card {
        padding: 20px;
    }
    
    .feature-card-header h4 {
        font-size: 1rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .brand-logo {
        height: 45px;
        max-width: 180px;
    }
    
    .brand-name {
        font-size: 1.4rem;
    }
    
    .brand-tagline {
        font-size: 0.75rem;
    }
    
    .nav-logo {
        gap: 12px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .why-choose-section h2,
    .testimonials-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .about-card {
        margin-bottom: 20px;
        padding: 25px;
        border-radius: 12px;
    }
    
    .card-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .card-icon {
        margin-bottom: 10px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .equipment-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
/* Force refresh */

/* ================================
   RESPONSIVE DESIGN - ALL DEVICES
   ================================ */

/* Large Tablets and Small Desktops (1024px - 1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
        padding: 0 30px;
    }
    
    .about-container {
        max-width: 900px;
        padding: 50px 30px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .features-grid {
        max-width: 800px;
    }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
        max-width: 500px;
    }
    
    .services-section {
        padding: 80px 0;
    }
    
    .services-grid {
        gap: 20px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .why-choose-us {
        padding: 80px 0;
    }
    
    .features-grid {
        gap: 20px;
        max-width: 700px;
    }
    
    .about-section {
        padding: 80px 0;
    }
    
    .about-header h2 {
        font-size: 2.5rem;
    }
    
    .card-header h3 {
        font-size: 1.6rem;
    }
    
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-section .container {
        padding: 50px 30px;
    }
    
    .contact-section h2 {
        font-size: 2.4rem;
    }
}

/* Mobile Landscape and Small Tablets (600px - 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 0.95rem;
        max-width: 400px;
        margin: 0 auto 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 15px 25px;
        font-size: 0.95rem;
    }
    
    /* Navigation Mobile */
    .navbar {
        padding: 15px 0;
    }
    
    .nav-brand {
        font-size: 1.3rem;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    /* Services Section Mobile */
    .services-section {
        padding: 60px 0;
    }
    
    .services-section .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .service-card {
        padding: 25px 20px;
        text-align: center;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .service-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Why Choose Us Mobile */
    .why-choose-us {
        padding: 60px 0;
    }
    
    .why-choose-us .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 20px;
        padding: 1rem;
    }
    
    .feature-card {
        padding: 25px 20px;
        text-align: center;
    }
    
    .icon-container {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .icon-container i {
        font-size: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* CTA Section Mobile */
    .cta-divider-section {
        padding: 60px 0;
    }
    
    .cta-divider {
        margin: 0 20px;
        padding: 40px 25px;
        border-radius: 15px;
        text-align: center;
    }
    
    .cta-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .cta-button-modern {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    /* Gallery Section Mobile */
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-section .section-header h2 {
        font-size: 2.5rem;
    }
    
    .social-gallery-links {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .gallery-link {
        padding: 20px 25px;
        min-width: 250px;
        max-width: 300px;
    }
    
    .gallery-link i {
        font-size: 2rem;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 60px 0;
    }
    
    .about-container {
        max-width: 100%;
        padding: 40px 20px;
        margin: 0 15px;
    }
    
    .about-header h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .about-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .about-card {
        padding: 25px 20px;
        margin-bottom: 25px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .card-header h3 {
        font-size: 1.4rem;
        margin: 0;
    }
    
    .card-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .value-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 15px;
    }
    
    .value-content h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .value-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Contact Section Mobile */
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section .container {
        padding: 40px 25px;
        margin: 0 15px;
    }
    
    .contact-section h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .contact-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .contact-form {
        max-width: 100%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group {
        width: 100%;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 15px;
        font-size: 1rem;
    }
    
    .submit-btn {
        width: 100%;
        padding: 15px;
        font-size: 1rem;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        gap: 20px;
    }
}

/* Mobile Portrait (320px - 600px) */
@media (max-width: 600px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 1.9rem;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 0.9rem;
        max-width: 300px;
    }
    
    .services-section .section-header h2,
    .why-choose-us .section-header h2,
    .gallery-section .section-header h2,
    .about-header h2,
    .contact-section h2 {
        font-size: 2.5rem;
    }
    
    .about-container,
    .contact-section .container {
        margin: 0 10px;
        padding: 30px 15px;
    }
    
    .card-header h3 {
        font-size: 1.2rem;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .btn-primary,
    .btn-secondary {
        max-width: 250px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile (320px and below) */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 0.85rem;
        max-width: 280px;
    }
    
    .about-container,
    .contact-section .container {
        margin: 0 5px;
        padding: 25px 10px;
    }
    
    .card-header h3 {
        font-size: 1.1rem;
    }
    
    .services-section .section-header h2,
    .why-choose-us .section-header h2,
    .gallery-section .section-header h2,
    .about-header h2,
    .contact-section h2 {
        font-size: 2.5rem;
    }
}
