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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90" fill="%23ffffff" opacity="0.02">{ }</text></svg>') repeat;
    background-size: 100px 100px;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #ccc;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.profile-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 4px solid #ff6b6b;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

/* About Section */
.about-section {
    background: #111;
    color: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 20px;
}

.about-content code {
    background: #ff6b6b;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

/* Highlights Section */
.highlights-section {
    background: #1a1a1a;
    color: white;
}

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

.highlight-card {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ee5a24);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.2);
}

.highlight-icon {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.highlight-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.highlight-content p {
    color: #ccc;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    background: #111;
    color: white;
}

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

.service-card {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid #333;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ee5a24);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

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

.service-card code {
    background: #ff6b6b;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

/* Presentation Types Section */
.presentation-types-section {
    background: #1a1a1a;
    color: white;
}

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

.presentation-card {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.presentation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ee5a24);
}

.presentation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.2);
}

.presentation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.presentation-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

.duration {
    background: #ff6b6b;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.presentation-card p {
    color: #ccc;
    line-height: 1.6;
}

.presentation-card code {
    background: #ff6b6b;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

/* Pricing Section */
.pricing-section {
    background: #111;
    color: white;
}

.pricing-table {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
    margin-bottom: 40px;
}

.pricing-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: linear-gradient(90deg, #ff6b6b, #ee5a24);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #333;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-col {
    padding: 20px;
    display: flex;
    align-items: center;
}

.pricing-header .pricing-col {
    justify-content: center;
    text-align: center;
}

.price {
    font-weight: 600;
    color: #ff6b6b;
    font-size: 1.1rem;
    justify-content: center;
}

.pricing-notes {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
}

.pricing-notes h3 {
    color: #ff6b6b;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.pricing-notes ul {
    list-style: none;
    margin-bottom: 20px;
}

.pricing-notes li {
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

.pricing-notes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    background: #1a1a1a;
    color: white;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-content > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ccc;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.contact-item i {
    color: #ff6b6b;
    font-size: 1.2rem;
}

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

.contact-item a:hover {
    color: #ff6b6b;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #333;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ff6b6b;
    border-color: #ff6b6b;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.2rem;
}

.cta-section {
    margin-top: 50px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.cta-button i {
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: #666;
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .highlights-grid,
    .services-grid,
    .presentation-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-header,
    .pricing-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .pricing-col {
        justify-content: center;
        text-align: center;
        border-bottom: 1px solid #333;
    }
    
    .pricing-row .pricing-col:last-child {
        border-bottom: none;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .profile-photo {
        width: 250px;
        height: 250px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .highlight-card,
    .service-card,
    .presentation-card {
        padding: 25px 20px;
    }
}



/* Speaking Photo Section */
.speaking-photo-section {
    background: #111;
    color: white;
}

.speaking-photo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.speaking-photo {
    width: 100%;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 3px solid #ff6b6b;
}

.speaking-photo-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
}

/* Social Media Stats Section */
.social-stats-section {
    background: #1a1a1a;
    color: white;
}

.social-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.social-stat-card {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ee5a24);
}

.social-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.2);
}

.social-stat-icon {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 20px;
    text-align: center;
}

.social-stat-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.social-stat-card p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

.social-stat-card p strong {
    color: #ff6b6b;
}

.social-audience-info {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #333;
    max-width: 800px;
    margin: 0 auto;
}

.social-audience-info h3 {
    color: #ff6b6b;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
}

.social-audience-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.social-audience-info li {
    background: #111;
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: white;
}

.social-audience-info li strong {
    color: #ff6b6b;
}

.social-audience-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    text-align: center;
}

@media (max-width: 768px) {
    .speaking-photo-content {
        gap: 20px;
    }

    .speaking-photo {
        border-radius: 10px;
    }

    .social-stats-grid {
        grid-template-columns: 1fr;
    }

    .social-audience-info {
        padding: 30px;
    }

    .social-audience-info li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}


