/* Reset and Base Styles */
* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    html {
        scroll-behavior: smooth;
    }
    
    body {
        font-family: 'Inter', sans-serif;
        background-color: #131416;
        color: #68bfc5;
        line-height: 1.6;
        overflow-x: hidden;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* Navigation */
    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(44, 42, 42, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 1rem 0;
        transition: all 0.3s ease;
    }
    
    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-logo .logo-text {
        font-size: 1.5rem;
        font-weight: 800;
        background: linear-gradient(135deg, #ff6b35, #f7931e);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .nav-menu {
        display: flex;
        gap: 2rem;
    }
    
    .nav-link {
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
    }
    
    .nav-link:hover {
        color: #ff6b35;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #ff6b35;
        transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
        width: 100%;
    }
    
    .nav-link.active {
        color: #ff6b35 !important;
    }
    
    .nav-link.active::after {
        width: 100% !important;
    }
    
    .nav-toggle {
        display: none;
        flex-direction: column;
        cursor: pointer;
    }
    
    .bar {
        width: 25px;
        height: 3px;
        background: #ffffff;
        margin: 3px 0;
        transition: 0.3s;
    }
    
    /* Banner Section */
    .banner-section {
        margin-top: 70px;
        height: 400px;
        position: relative;
        overflow: hidden;
    }
    
    .banner-container {
        width: 100%;
        height: 100%;
    }
    
    .banner-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }
    
    /* Profile Image Container */
    .profile-image-container {
        position: relative;
        width: 180px;
        height: 180px;
        margin: 0 auto;
    }
    
    .profile-image {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #ff6b35;
        box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3);
        display: block;
    }
    
    /* Hero Section */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
        overflow: hidden;
        padding-top: 0;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .hero-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 2;
    }
    
    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    
    .title-main {
        display: block;
        color: #ffffff;
    }
    
    .title-highlight {
        display: block;
        background: linear-gradient(135deg, #ff6b35, #f7931e);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
        font-weight: 600;
        color: #ff6b35;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        color: #cccccc;
        margin-bottom: 2rem;
        line-height: 1.7;
    }
    
    .hero-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 2rem;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        font-size: 1rem;
    }
    
    .cta-button.primary {
        background: linear-gradient(135deg, #ff6b35, #f7931e);
        color: #ffffff;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    }
    
    .cta-button.primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    }
    
    .cta-button.secondary {
        background: transparent;
        color: #ffffff;
        border: 2px solid #333333;
    }
    
    .cta-button.secondary:hover {
        border-color: #ff6b35;
        color: #ff6b35;
        transform: translateY(-2px);
    }
    
    .hero-image {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-scroll {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .scroll-indicator {
        width: 30px;
        height: 50px;
        border: 2px solid #ff6b35;
        border-radius: 25px;
        position: relative;
    }
    
    .scroll-indicator span {
        position: absolute;
        top: 8px;
        left: 50%;
        width: 4px;
        height: 8px;
        background: #ff6b35;
        border-radius: 2px;
        transform: translateX(-50%);
        animation: scroll 2s infinite;
    }
    
    @keyframes scroll {
        0% { opacity: 0; }
        10% { transform: translateX(-50%) translateY(0); opacity: 1; }
        100% { transform: translateX(-50%) translateY(24px); opacity: 0; }
    }
    
    /* Follow Me Section */
    .follow-section {
        background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
        padding: 4rem 0;
        position: relative;
        overflow: hidden;
    }
    
    .follow-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .follow-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        position: relative;
        z-index: 2;
    }
    
    .follow-title {
        font-size: 2.5rem;
        font-weight: 900;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #ff6b35, #f7931e);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .follow-description {
        font-size: 1.1rem;
        color: #cccccc;
        line-height: 1.7;
        margin-bottom: 2rem;
    }
    
    .follow-form-container {
        background: rgba(26, 26, 26, 0.8);
        padding: 2.5rem;
        border-radius: 20px;
        border: 1px solid #333333;
        backdrop-filter: blur(10px);
    }
    
    .follow-form {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .email-input-group {
        display: flex;
        gap: 1rem;
        align-items: stretch;
    }
    
    .follow-email-input {
        flex: 1;
        padding: 1rem 1.5rem;
        background: #0a0a0a;
        border: 2px solid #333333;
        border-radius: 50px;
        color: #ffffff;
        font-size: 1rem;
        transition: all 0.3s ease;
    }
    
    .follow-email-input:focus {
        outline: none;
        border-color: #ff6b35;
        box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    }
    
    .follow-email-input::placeholder {
        color: #888888;
    }
    
    .verify-btn {
        padding: 1rem 1.5rem;
        background: #333333;
        border: none;
        border-radius: 50px;
        color: #ffffff;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        white-space: nowrap;
    }
    
    .verify-btn:hover {
        background: #444444;
        transform: translateY(-2px);
    }
    
    .verify-btn.verified {
        background: linear-gradient(135deg, #10b981, #059669);
        pointer-events: none;
    }
    
    .verify-btn.verified i {
        animation: checkmark 0.5s ease;
    }
    
    @keyframes checkmark {
        0% { transform: scale(0); }
        50% { transform: scale(1.2); }
        100% { transform: scale(1); }
    }
    
    .follow-btn {
        padding: 1.2rem 2rem;
        border: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1.1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        position: relative;
        overflow: hidden;
    }
    
    .follow-btn.disabled {
        background: #333333;
        color: #888888;
        cursor: not-allowed;
    }
    
    .follow-btn:not(.disabled) {
        background: linear-gradient(135deg, #ff6b35, #f7931e);
        color: #ffffff;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        animation: glow 2s ease-in-out infinite alternate;
    }
    
    .follow-btn:not(.disabled):hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    }
    
    @keyframes glow {
        from {
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }
        to {
            box-shadow: 0 4px 25px rgba(255, 107, 53, 0.6);
        }
    }
    
    .success-message {
        display: none;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 1rem;
        background: linear-gradient(135deg, #10b981, #059669);
        border-radius: 50px;
        color: #ffffff;
        font-weight: 600;
        animation: slideInUp 0.5s ease;
    }
    
    .success-message.show {
        display: flex;
    }
    
    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .follow-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding-top: 2rem;
        border-top: 1px solid #333333;
    }
    
    .follow-stats .stat {
        text-align: center;
    }
    
    .follow-stats .stat-number {
        display: block;
        font-size: 1.8rem;
        font-weight: 800;
        color: #ff6b35;
        margin-bottom: 0.5rem;
    }
    
    .follow-stats .stat-label {
        font-size: 0.9rem;
        color: #cccccc;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    /* Section Styles */
    section {
        padding: 5rem 0;
    }
    
    .section-title {
        font-size: 2.5rem;
        font-weight: 800;
        text-align: center;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #ffffff, #cccccc);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        color: #cccccc;
        text-align: center;
        margin-bottom: 3rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* About Section */
    .about {
        background: #111111;
    }
    
    .about-content {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 4rem;
        align-items: center;
    }
    
    .about-text .section-title {
        text-align: left;
        margin-bottom: 2rem;
    }
    
    .about-description {
        font-size: 1.1rem;
        color: #cccccc;
        margin-bottom: 1.5rem;
        line-height: 1.7;
    }
    
    .stats {
        display: flex;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        display: block;
        font-size: 2rem;
        font-weight: 800;
        color: #ff6b35;
    }
    
    .stat-label {
        font-size: 0.9rem;
        color: #cccccc;
    }
    
    /* Services Section */
    .services {
        background: #0a0a0a;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .service-card {
        background: #1a1a1a;
        padding: 2.5rem;
        border-radius: 20px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid #333333;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
        border-color: #ff6b35;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #ff6b35, #f7931e);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
    }
    
    .service-icon i {
        font-size: 2rem;
        color: #ffffff;
    }
    
    .service-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #ffffff;
    }
    
    .service-description {
        color: #cccccc;
        line-height: 1.6;
    }
    
    /* YouTube Section */
    .youtube-section {
        background: #111111;
    }
    
    .video-container {
        max-width: 800px;
        margin: 0 auto 2rem;
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        background: #1a1a1a;
        border-radius: 20px;
        overflow: hidden;
        border: 2px solid #333333;
    }
    
    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 18px; /* Slightly smaller to account for border */
    }
    
    .video-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #cccccc;
    }
    
    .video-placeholder i {
        font-size: 4rem;
        color: #ff6b35;
        margin-bottom: 1rem;
    }
    
    .youtube-cta {
        text-align: center;
    }
    
    /* Live Classes Section */
    .live-classes {
        background: #0a0a0a;
    }
    
    .classes-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        margin: 3rem 0;
    }
    
    .class-features {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .feature-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        background: #1a1a1a;
        border-radius: 10px;
        border: 1px solid #333333;
    }
    
    .feature-item i {
        font-size: 1.5rem;
        color: #ff6b35;
        width: 30px;
    }
    
    .class-schedule h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        color: #ffffff;
    }
    
    .schedule-item {
        display: flex;
        gap: 1rem;
        padding: 1.5rem;
        background: #1a1a1a;
        border-radius: 15px;
        margin-bottom: 1rem;
        border: 1px solid #333333;
        transition: border-color 0.3s ease;
    }
    
    .schedule-item:hover {
        border-color: #ff6b35;
    }
    
    .schedule-date {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #ff6b35;
        color: #ffffff;
        border-radius: 10px;
        padding: 1rem;
        min-width: 60px;
    }
    
    .schedule-date .day {
        font-size: 1.5rem;
        font-weight: 800;
    }
    
    .schedule-date .month {
        font-size: 0.8rem;
        text-transform: uppercase;
    }
    
    .schedule-info h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        color: #ffffff;
    }
    
    .schedule-info p {
        color: #cccccc;
    }
    
    .class-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Contact Section */
    .contact {
        background: #111111;
    }
    
    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        margin-top: 3rem;
    }
    
    .form {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 1rem;
        background: #1a1a1a;
        border: 2px solid #333333;
        border-radius: 10px;
        color: #ffffff;
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #ff6b35;
    }
    
    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #888888;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #ffffff;
    }
    
    .contact-info p {
        color: #cccccc;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .social-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-link {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        background: #1a1a1a;
        border-radius: 10px;
        text-decoration: none;
        color: #ffffff;
        transition: all 0.3s ease;
        border: 1px solid #333333;
    }
    
    .social-link:hover {
        transform: translateX(10px);
        border-color: #ff6b35;
    }
    
    .social-link i {
        font-size: 1.5rem;
        width: 30px;
    }
    
    .social-link.youtube:hover { border-color: #ff0000; }
    .social-link.instagram:hover { border-color: #e4405f; }
    .social-link.linkedin:hover { border-color: #0077b5; }
    .social-link.twitter:hover { border-color: #1da1f2; }
    
    /* Footer */
    .footer {
        background: #0a0a0a;
        border-top: 1px solid #333333;
        padding: 3rem 0 1rem;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 3rem;
        margin-bottom: 2rem;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        background: linear-gradient(135deg, #ff6b35, #f7931e);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .footer-brand p {
        color: #cccccc;
    }
    
    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #ffffff;
    }
    
    .footer-section a {
        display: block;
        color: #cccccc;
        text-decoration: none;
        margin-bottom: 0.5rem;
        transition: color 0.3s ease;
    }
    
    .footer-section a:hover {
        color: #ff6b35;
    }
    
    .footer-bottom {
        border-top: 1px solid #333333;
        padding-top: 2rem;
        text-align: center;
        color: #888888;
    }
    
    .footer-credit {
        margin-top: 0.5rem;
        font-size: 0.9rem;
        font-style: italic;
    }
    
    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .fade-in-up {
        animation: fadeInUp 0.6s ease-out;
    }
    
    @keyframes confettiFall {
        to {
            transform: translateY(100vh) rotate(360deg);
            opacity: 0;
        }
    }
    
    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    
    ::-webkit-scrollbar-track {
        background: #1a1a1a;
    }
    
    ::-webkit-scrollbar-thumb {
        background: #ff6b35;
        border-radius: 4px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: #f7931e;
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) {
        .hero-title {
            font-size: 3rem;
        }
        
        .follow-title {
            font-size: 2.2rem;
        }
        
        .section-title {
            font-size: 2.2rem;
        }
        
        .profile-image-container {
            width: 150px;
            height: 150px;
        }
    }
    
    @media (max-width: 768px) {
        .nav-menu {
            position: fixed;
            left: -100%;
            top: 70px;
            flex-direction: column;
            background-color: rgba(10, 10, 10, 0.98);
            width: 100%;
            text-align: center;
            transition: 0.3s;
            padding: 2rem 0;
            backdrop-filter: blur(10px);
        }
    
        .nav-menu.active {
            left: 0;
        }
    
        .nav-toggle {
            display: flex;
        }
    
        .banner-section {
            height: 250px;
        }
        
        .video-container {
            margin: 0 auto 1.5rem;
            border-radius: 15px;
        }
        
        .video-container iframe {
            border-radius: 13px;
        }
    
        .hero-content {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 2rem;
        }
    
        .hero-title {
            font-size: 2.5rem;
        }
    
        .hero-tagline {
            font-size: 1.3rem;
        }
    
        .hero-description {
            font-size: 1rem;
        }
    
        .follow-content {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        
        .follow-title {
            font-size: 2rem;
        }
        
        .follow-form-container {
            padding: 2rem;
        }
        
        .email-input-group {
            flex-direction: column;
            gap: 1rem;
        }
        
        .follow-stats {
            grid-template-columns: 1fr;
            gap: 1rem;
        }
    
        .about-content {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 2rem;
        }
    
        .about-text .section-title {
            text-align: center;
        }
    
        .stats {
            justify-content: center;
            flex-wrap: wrap;
        }
    
        .classes-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    
        .contact-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    
        .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
        }
    
        .footer-links {
            grid-template-columns: 1fr;
        }
    
        .hero-buttons {
            justify-content: center;
        }
    
        .class-buttons {
            flex-direction: column;
            align-items: center;
        }
    
        .cta-button {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }
    
        .section-title {
            font-size: 2rem;
        }
    
        .service-card {
            padding: 2rem;
        }
    
        .profile-image-container {
            width: 120px;
            height: 120px;
        }
    }
    
    @media (max-width: 480px) {
        .container {
            padding: 0 15px;
        }
    
        .nav-container {
            padding: 0 15px;
        }
    
        .banner-section {
            height: 200px;
        }
        
        .video-container {
            border-radius: 10px;
            margin: 0 auto 1rem;
        }
        
        .video-container iframe {
            border-radius: 8px;
        }
    
        .hero-title {
            font-size: 2rem;
        }
    
        .hero-tagline {
            font-size: 1.1rem;
        }
    
        .section-title {
            font-size: 1.8rem;
        }
    
        .follow-title {
            font-size: 1.8rem;
        }
    
        .follow-section {
            padding: 3rem 0;
        }
        
        .follow-form-container {
            padding: 1.5rem;
        }
        
        .follow-description {
            font-size: 1rem;
        }
    
        .service-card {
            padding: 1.5rem;
        }
    
        .profile-image-container {
            width: 100px;
            height: 100px;
        }
    
        .stats {
            gap: 1rem;
        }
    
        .stat-item {
            min-width: 80px;
        }
    
        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }
    
        .cta-button {
            width: 100%;
            max-width: 250px;
        }
    }
    
    /* Touch device optimizations */
    @media (hover: none) and (pointer: coarse) {
        .cta-button:hover,
        .service-card:hover,
        .social-link:hover {
            transform: none;
        }
        
        .cta-button:active {
            transform: scale(0.98);
        }
        
        .service-card:active {
            transform: translateY(-5px);
        }
    }
    
    /* High DPI displays */
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
        .profile-image,
        .banner-image {
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }
    }
