/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #2d1b69 70%, #0a0a0a 100%);
    min-height: 100vh;
}

/* Standardize font family across all elements */
h1, h2, h3, h4, h5, h6, p, a, button, input, textarea, li, span, div {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #2d1b69 70%, #0a0a0a 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header .logo {
    display: flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
}

header .logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

header .logo img {
    height: 85px;
    width: auto;
    filter: brightness(1.1) contrast(1.1);
    transition: transform 0.3s ease;
}

header .logo:hover img {
    transform: scale(1.05);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 70px;
    position: relative;
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: auto;
    align-items: center;
}

header nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.3rem;
    padding: 0.9rem 1.8rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

header nav ul li a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Main content */
main {
    margin-top: 85px;
    min-height: calc(100vh - 85px);
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #2d1b69 70%, #0a0a0a 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Grid background removed */
    opacity: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 3rem 2rem;
    width: 100%;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 15%, #ffed4e 30%, #ffffff 45%, #ffd700 60%, #ffed4e 75%, #ffffff 90%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
    position: relative;
    line-height: 1.1;
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-content p {
    font-size: 1.6rem;
    background: linear-gradient(135deg, #ffffff 0%, #e6f3ff 15%, #b3d9ff 30%, #ffffff 45%, #e6f3ff 60%, #b3d9ff 75%, #ffffff 90%, #e6f3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-weight: 400;
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #0a0a0a;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.8rem;
    padding: 2rem 4.5rem;
    border-radius: 60px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 300px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    color: #0a0a0a;
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* What We Do Section */
.what-we-do {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #2d1b69 70%, #0a0a0a 100%);
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 15%, #ffed4e 30%, #ffffff 45%, #ffd700 60%, #ffed4e 75%, #ffffff 90%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
    animation-delay: 1s;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-image {
    text-align: center;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.image-placeholder:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.image-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.image-placeholder p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    text-align: center;
    margin: 0;
}

.service-content h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.service-features li::before {
    content: '✓';
    color: #ffd700;
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Tablets (iPad Pro, etc.) - 1024px to 1366px */
@media (min-width: 1024px) and (max-width: 1366px) {
    .hero-content h1 {
        font-size: 4.5rem;
    }
    
    .hero-content p {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 3.2rem;
    }
    
    .service-item {
        gap: 3rem;
    }
    
    .service-content h3 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 2.5rem;
    }
    
    header nav {
        padding: 0 2rem;
    }
    
    header .logo img {
        height: 80px;
    }
    
    header nav ul li a {
        font-size: 1.2rem;
        padding: 0.8rem 1.6rem;
    }
}

/* Standard Tablets (iPad, iPad Air) - 768px to 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content p {
        font-size: 1.4rem;
    }
    
    .cta-button {
        font-size: 1.6rem;
        padding: 1.8rem 4rem;
        min-width: 280px;
    }
    
    .section-title {
        font-size: 3rem;
        margin-bottom: 2.5rem;
    }
    
    .service-item {
        gap: 3rem;
        padding: 1.8rem;
    }
    
    .service-content h3 {
        font-size: 1.8rem;
    }
    
    .service-content p {
        font-size: 1.1rem;
    }
    
    .image-placeholder {
        height: 280px;
    }
    
    .image-placeholder i {
        font-size: 3.5rem;
    }
    
    .container {
        padding: 0 2rem;
    }
    
    header nav {
        padding: 0 1.5rem;
    }
    
    header .logo img {
        height: 75px;
    }
    
    header nav ul li a {
        font-size: 1.1rem;
        padding: 0.7rem 1.4rem;
    }
    
    /* Maintain desktop proportions for key sections */
    .what-we-do {
        padding: 3.5rem 0;
    }
    
    .schedule-section {
        padding: 3.5rem 0;
    }
    
    .contact-section {
        padding: 3.5rem 0;
    }
    
    .meet-benjamin {
        padding: 3.5rem 0;
    }
    
    .small-business-commitment {
        padding: 3.5rem 0;
    }
    
    .small-business-advantage {
        padding: 3.5rem 0;
    }
    
    .services-section {
        padding: 3.5rem 0;
    }
}

/* Large Mobile (iPhone Plus, etc.) - 481px to 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .hero-content h1 {
        font-size: 3.2rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .cta-button {
        font-size: 1.4rem;
        padding: 1.6rem 3.5rem;
        min-width: 250px;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.6rem;
    }
    
    .service-content p {
        font-size: 1rem;
    }
    
    .image-placeholder {
        height: 250px;
    }
    
    .image-placeholder i {
        font-size: 3rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    /* Header adjustments for mobile */
    header nav {
        padding: 0 1rem;
        min-height: 80px;
    }
    
    header .logo {
        padding: 0.4rem 1rem;
    }
    
    header .logo img {
        height: 70px;
    }
    
    header nav ul li a {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
    
    main {
        margin-top: 80px;
    }
    
    /* Maintain proportions for sections */
    .what-we-do {
        padding: 3rem 0;
    }
    
    .schedule-section {
        padding: 3rem 0;
    }
    
    .contact-section {
        padding: 3rem 0;
    }
    
    .meet-benjamin {
        padding: 3rem 0;
    }
    
    .small-business-commitment {
        padding: 3rem 0;
    }
    
    .small-business-advantage {
        padding: 3rem 0;
    }
    
    .services-section {
        padding: 3rem 0;
    }
}

/* Small Mobile (iPhone SE, etc.) - 320px to 480px */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        font-size: 1.2rem;
        padding: 1.4rem 3rem;
        min-width: 220px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.2rem;
    }
    
    .service-content h3 {
        font-size: 1.4rem;
    }
    
    .service-content p {
        font-size: 0.95rem;
    }
    
    .image-placeholder {
        height: 200px;
    }
    
    .image-placeholder i {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* Header adjustments for small mobile */
    header nav {
        padding: 0 0.8rem;
        min-height: 75px;
    }
    
    header .logo {
        padding: 0.3rem 0.8rem;
    }
    
    header .logo img {
        height: 65px;
    }
    
    header nav ul li a {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    main {
        margin-top: 75px;
    }
    
    /* Improve touch targets on mobile */
    .cta-button,
    .submit-btn,
    .service-cta {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better spacing for mobile */
    .what-we-do,
    .schedule-section,
    .contact-section,
    .meet-benjamin,
    .small-business-commitment,
    .small-business-advantage,
    .services-section {
        padding: 2.5rem 0;
    }
    
    /* Adjust form elements for mobile */
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* ===== EXISTING MOBILE QUERIES (CONSOLIDATED) ===== */

@media (max-width: 768px) {
    /* Mobile menu functionality */
    .mobile-menu-btn {
        display: flex;
    }
    
    header nav ul {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #2d1b69 70%, #0a0a0a 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    header nav ul.active {
        left: 0;
    }
    
    header nav ul li {
        margin: 0;
    }
    
    header nav ul li a {
        font-size: 1.5rem;
        padding: 1rem 2rem;
        border-radius: 40px;
    }
    
    /* Hero adjustments */
    .hero {
        min-height: 50vh;
        padding: 1.5rem 0;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        font-size: 1.3rem;
        padding: 1.5rem 3rem;
        min-width: 240px;
    }
    
    /* Layout adjustments */
    main {
        margin-top: 80px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    /* Section title adjustments */
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    /* Service item adjustments */
    .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .service-content {
        order: 2;
    }
    
    .service-content h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .service-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Image placeholder adjustments */
    .image-placeholder {
        height: 250px;
        order: 1;
    }
    
    .image-placeholder i {
        font-size: 3rem;
        margin-bottom: 0.8rem;
    }
    
    /* Schedule section adjustments */
    .schedule-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }
    
    .schedule-info {
        text-align: center;
    }
    
    .schedule-info h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .schedule-info p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .calendar-wrapper {
        min-height: 400px;
    }
    
    /* Benefit items adjustments */
    .benefit-item {
        padding: 1.5rem;
        text-align: center;
    }
    
    .benefit-item i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .benefit-item div {
        text-align: center;
    }
    
    .benefit-item h4 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .benefit-item p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Contact section adjustments */
    .contact-content {
        padding: 2rem 1.5rem;
    }
    
    .contact-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-content p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-item i {
        font-size: 1.5rem;
        margin-right: 0.8rem;
    }
    
    .contact-item div {
        flex: 1;
    }
    
    .submit-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    /* About page adjustments */
    .about-content {
        padding: 2rem 1.5rem;
    }
    
    .about-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .about-content p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .meet-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benjamin-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .benjamin-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .photo-placeholder {
        height: 350px;
        min-height: 350px;
        max-height: 400px;
        aspect-ratio: 3/4;
        padding: 2rem;
    }
    
    .photo-placeholder i {
        font-size: 4rem;
        margin-bottom: 1rem;
    }
    
    /* Services page adjustments */
    .services-content {
        padding: 2rem 1.5rem;
    }
    
    .services-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .services-content p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .service-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .service-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .media-placeholder {
        height: 250px;
        padding: 2rem;
    }
    
    .media-placeholder i {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .media-placeholder p {
        font-size: 1rem;
    }
    
    /* Commitment section adjustments */
    .commitment-content,
    .advantage-content {
        padding: 2rem 1.5rem;
    }
    
    .commitment-content h2,
    .advantage-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .commitment-intro,
    .advantage-intro {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .commitment-grid,
    .advantage-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .commitment-item,
    .advantage-item {
        padding: 1.5rem;
        text-align: center;
    }
    
    .commitment-icon i,
    .advantage-icon i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .commitment-item h3,
    .advantage-item h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .commitment-cta {
        padding: 1.5rem;
    }
    
    .commitment-cta h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .commitment-cta p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Social section adjustments */
    .social-content h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .social-content p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .social-links {
        justify-content: center;
        gap: 1.5rem;
        max-width: 300px;
        margin: 2rem auto;
    }
    
    .social-link {
        flex: 1;
        min-width: 120px;
        padding: 1rem;
    }
    
    .social-tagline {
        font-size: 1.8rem;
        padding: 1.5rem;
        line-height: 1.3;
    }
    
    .cta-icons {
        max-width: 250px;
        gap: 0.5rem;
    }
    
    .cta-icon i {
        font-size: 1.5rem;
    }
    
    .cta-icon span {
        font-size: 0.8rem;
    }
    
    .social-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    /* CTA section adjustments */
    .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    /* Footer adjustments */
    footer {
        padding: 1.5rem;
    }
    
    .footer-content p {
        font-size: 0.8rem;
        opacity: 0.6;
    }
}

/* ===== EXISTING STYLES CONTINUE BELOW ===== */

/* Schedule Section */
.schedule-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #2d1b69 70%, #0a0a0a 100%);
}

.schedule-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    min-height: 500px;
}

.schedule-info h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.schedule-info p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 2.1;
    margin-bottom: 3rem;
    text-align: justify;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.schedule-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.benefit-item i {
    font-size: 1.5rem;
    color: #ffffff;
    margin-top: 0.25rem;
    opacity: 0.8;
}

.benefit-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.calendar-container {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.calendar-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.calendly-inline-widget {
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    width: 100% !important;
    height: 100% !important;
    min-height: 400px !important;
}



/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #2d1b69 70%, #0a0a0a 100%);
    min-height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.contact-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 1rem;
}

.contact-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-content p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.3px;
    margin-bottom: 0;
}

.contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #2d1b69 70%, #0a0a0a 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2,
.contact-form h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: #ffffff;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-item h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #cccccc;
    margin: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group textarea {
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.5rem;
}

.submit-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #0a0a0a;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.submit-btn .btn-loading {
    display: none;
}

/* Status Messages */
.status-message {
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    font-weight: 500;
    position: relative;
    transition: opacity 0.3s ease;
}

.status-message.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-message.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.status-message p {
    margin: 0;
    font-size: 1rem;
}

.close-message {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.close-message:hover {
    opacity: 1;
}

/* Form Improvements */
.form-group label .required {
    color: #ffffff;
    font-weight: bold;
}

/* Responsive contact page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content h1 {
        font-size: 2rem;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 1.5rem;
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: #ffffff;
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content p {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    /* Header mobile styles */
    header nav {
        padding: 0 1rem;
        min-height: 70px;
        justify-content: space-between;
        align-items: center;
    }
    
    header .logo {
        padding: 0.3rem 1rem;
        display: flex;
        justify-content: center;
    }
    
    header .logo img {
        height: 85px;
    }
    
    /* Mobile menu */
    .mobile-menu-btn {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    header nav ul {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #2d1b69 70%, #0a0a0a 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
        margin: 0;
        padding: 2rem;
    }
    
    header nav ul.active {
        left: 0;
    }
    
    header nav ul li {
        width: 100%;
        text-align: center;
    }
    
    header nav ul li a {
        font-size: 1.6rem;
        padding: 1.1rem 2.2rem;
        width: 100%;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        display: block;
    }
    
    /* Hero section mobile */
    .hero {
        min-height: 55vh;
        padding: 3rem 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .hero-content {
        padding: 2rem 1rem;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 3rem;
        line-height: 1.1;
        margin-bottom: 1.2rem;
        text-align: center;
    }
    
    .hero-content p {
        font-size: 1.3rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .cta-button {
        font-size: 1.4rem;
        padding: 1.5rem 3rem;
        display: inline-block;
        text-align: center;
        min-width: 250px;
    }
    
    /* Main content mobile */
    main {
        margin-top: 75px;
    }
    
    /* Container mobile */
    .container {
        padding: 0 1rem;
    }
    
    /* Section titles mobile */
    .section-title {
        font-size: 3.2rem;
        margin-bottom: 2.5rem;
    }
    
    /* Service items mobile */
    .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .service-content {
        text-align: center;
    }
    
    .service-content h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .service-content p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
    }
    
    .image-placeholder {
        min-height: 200px;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .image-placeholder i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    /* Schedule section mobile */
    .schedule-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .schedule-info {
        text-align: center;
    }
    
    .schedule-info h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .schedule-info p {
        font-size: 1rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .calendar-wrapper {
        min-height: 300px;
        padding: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .schedule-benefits {
        text-align: center;
    }
    
    .benefit-item {
        padding: 1rem !important;
        gap: 0.8rem !important;
        text-align: center !important;
        justify-content: flex-start !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .benefit-item i {
        font-size: 1.2rem !important;
        margin: 0 auto !important;
        order: -1 !important;
        display: block !important;
        margin-bottom: 0.5rem !important;
        flex-shrink: 0 !important;
    }
    
    .benefit-item div {
        text-align: center !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .benefit-item h4 {
        font-size: 1rem;
        text-align: center;
    }
    
    .benefit-item p {
        font-size: 0.9rem;
        text-align: center;
    }
    
    /* Contact page mobile */
    .contact-content {
        text-align: center;
    }
    
    .contact-content h1 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .contact-content p {
        font-size: 1rem;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-info,
    .contact-form {
        text-align: center;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .contact-item {
        padding: 1rem;
        margin-bottom: 1rem;
        text-align: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-item i {
        font-size: 1.2rem;
        margin: 0 auto;
        margin-bottom: 0.5rem;
    }
    
    .contact-item div {
        text-align: center;
        width: 100%;
    }
    
    .submit-btn {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    
    /* About page mobile */
    .about-content {
        text-align: center;
    }
    
    .about-content h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .about-content p {
        font-size: 1rem;
        text-align: center;
    }
    
    .meet-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .benjamin-content {
        text-align: center;
    }
    
    .benjamin-content h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .benjamin-content p {
        font-size: 1rem;
        text-align: center;
    }
    
    .photo-placeholder {
        min-height: 400px;
        height: 60vh;
        max-height: 500px;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        aspect-ratio: 3/4;
    }
    
    .photo-placeholder i {
        font-size: 5rem;
        margin-bottom: 1rem;
    }
    
    /* Services page mobile */
    .services-content {
        text-align: center;
    }
    
    .services-content h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .services-content p {
        font-size: 1rem;
        text-align: center;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .service-content h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .service-content p {
        font-size: 1rem;
        text-align: center;
    }
    
    .media-placeholder {
        min-height: 200px;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .media-placeholder i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .media-placeholder p {
        font-size: 1rem;
        text-align: center;
    }
    
    /* Commitment sections mobile */
    .commitment-content,
    .advantage-content {
        text-align: center;
    }
    
    .commitment-content h2,
    .advantage-content h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .commitment-intro,
    .advantage-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .commitment-grid,
    .advantage-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .commitment-item,
    .advantage-item {
        padding: 1.5rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .commitment-icon,
    .advantage-icon {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .commitment-icon i,
    .advantage-icon i {
        font-size: 2rem;
        margin: 0 auto;
    }
    
    .commitment-item h3,
    .advantage-item h3 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .commitment-item p,
    .advantage-item p {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .commitment-cta {
        padding: 1.5rem;
    }
    
    .commitment-cta h3 {
        font-size: 1.3rem;
    }
    
    .commitment-cta p {
        font-size: 0.9rem;
    }
    
    /* Social media mobile */
    .social-content h3 {
        font-size: 1.2rem;
    }
    
    .social-content p {
        font-size: 0.9rem;
    }
    
    .social-links {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .social-link {
        width: 100%;
        max-width: 250px;
        justify-content: flex-start;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    /* CTA sections mobile */
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    /* Footer mobile */
    footer {
        padding: 1.5rem;
    }
    
    .footer-content p {
        font-size: 0.8rem;
        opacity: 0.6;
    }
}

/* Tablet devices */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .service-item {
        gap: 3rem;
    }
    
    .schedule-content {
        gap: 3rem;
    }
    
    .commitment-grid,
    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 0 2rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        font-size: 1.2rem;
        padding: 1.2rem 2.5rem;
        min-width: 200px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-content h3,
    .schedule-info h2,
    .benjamin-content h2,
    .service-content h2 {
        font-size: 1.5rem;
    }
    
    .contact-content h1,
    .about-content h1,
    .services-content h1 {
        font-size: 1.6rem;
    }
    
    .commitment-content h2,
    .advantage-content h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 0.8rem;
    }
    
    header nav {
        padding: 0 0.8rem;
        min-height: 75px;
    }
    
    header .logo {
        padding: 0.3rem 0.8rem;
    }
    
    header .logo img {
        height: 80px;
    }
    
    /* Improve touch targets on mobile */
    .cta-button,
    .submit-btn,
    .service-cta {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better spacing for mobile */
    .what-we-do,
    .schedule-section,
    .contact-section,
    .meet-benjamin,
    .small-business-commitment,
    .small-business-advantage,
    .services-section {
        padding: 3rem 0;
    }
    
    /* Improve form inputs on mobile */
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Prevent text selection on mobile for better UX */
@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    /* Allow text selection for content areas */
    p, h1, h2, h3, h4, h5, h6, li, span, div {
        -webkit-user-select: text;
        -khtml-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
    }
    
    /* Improve button interactions */
    button, a {
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #1a1a1a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #333333;
}

/* Social Media Section */
.social-content {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-content p {
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 400px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    flex: 1;
    min-width: 150px;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #dc2743;
}

.social-link.linkedin:hover {
    background: linear-gradient(45deg, #0077b5 0%, #00a0dc 100%);
    border-color: #0077b5;
}

.social-link i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
}

.social-link span {
    font-weight: 600;
}

.social-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-tagline {
    text-align: center;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin: 0;
    line-height: 1.3;
    padding: 1.5rem 0;
    font-weight: 600;
}

.social-cta-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.cta-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    transition: transform 0.3s ease;
}

.cta-icon:hover {
    transform: translateY(-3px);
}

.cta-icon i {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
}

.cta-icon:hover i {
    color: #ffffff;
}

.cta-icon span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.4;
    font-style: normal;
}

/* Responsive social media section */
@media (max-width: 768px) {
    .social-content h3 {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .social-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        justify-content: center;
        max-width: 280px;
    }
    
    .social-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        text-align: center;
        flex: none;
        min-width: auto;
    }
    
    .social-tagline {
        font-size: 1.6rem;
        padding: 1.2rem;
        line-height: 1.2;
    }
    
    .cta-icons {
        max-width: 250px;
        gap: 0.5rem;
    }
    
    .cta-icon i {
        font-size: 1.5rem;
    }
    
    .cta-icon span {
        font-size: 0.8rem;
    }
    
    .social-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #2d1b69 70%, #0a0a0a 100%);
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.about-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.about-content p {
    font-size: 1.25rem;
    color: #cccccc;
    line-height: 2.1;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.meet-benjamin {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #2d1b69 70%, #0a0a0a 100%);
}

.meet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benjamin-photo {
    position: relative;
}

.photo-placeholder {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    min-height: 600px;
    height: 80vh;
    max-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    aspect-ratio: 3/4;
}

.photo-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.photo-placeholder i {
    font-size: 8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.photo-placeholder p {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.benjamin-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.benjamin-content p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 2.1;
    margin-bottom: 2rem;
    text-align: justify;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.benjamin-content p:last-child {
    margin-bottom: 0;
}

/* Responsive About Page */
@media (max-width: 768px) {
    .about-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content p {
        font-size: 1.1rem;
    }
    
    .meet-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benjamin-content h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .benjamin-content p {
        font-size: 1rem;
    }
    
    .photo-placeholder {
        min-height: 500px;
        height: 70vh;
        max-height: 600px;
        padding: 1.5rem;
        aspect-ratio: 3/4;
    }
    
    .photo-placeholder i {
        font-size: 6rem;
    }
}

/* Small Business Commitment Section */
.small-business-commitment {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.commitment-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.commitment-content h2 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.commitment-intro {
    color: #cccccc;
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.commitment-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.commitment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.commitment-icon {
    margin-bottom: 1.5rem;
}

.commitment-icon i {
    font-size: 3rem;
    color: #ffffff;
    opacity: 0.9;
}

.commitment-item h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.commitment-item p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.commitment-cta {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.commitment-cta h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.commitment-cta p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.commitment-cta .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #0a0a0a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
}

.commitment-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    color: #0a0a0a;
}

/* Responsive Small Business Commitment */
@media (max-width: 768px) {
    .commitment-content h2 {
        font-size: 2.5rem;
    }
    
    .commitment-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .commitment-item {
        padding: 2rem;
    }
    
    .commitment-icon i {
        font-size: 2.5rem;
    }
    
    .commitment-item h3 {
        font-size: 1.3rem;
    }
    
    .commitment-cta {
        padding: 2rem;
    }
    
    .commitment-cta h3 {
        font-size: 1.5rem;
    }
    
    .commitment-cta p {
        font-size: 1rem;
    }
}

/* Small Business Advantage Section */
.small-business-advantage {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #2d1b69 70%, #0a0a0a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.advantage-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.advantage-intro {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.advantage-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.advantage-icon {
    margin-bottom: 1rem;
}

.advantage-icon i {
    font-size: 2.5rem;
    color: #ffffff;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.advantage-item:hover .advantage-icon i {
    transform: scale(1.1);
}

.advantage-item h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.advantage-item p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 2.1;
    margin: 0;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.commitment-cta {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.commitment-cta h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.commitment-cta p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.commitment-cta .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #0a0a0a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
}

.commitment-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    color: #0a0a0a;
}

/* Responsive Small Business Advantage */
@media (max-width: 768px) {
    .advantage-content h2 {
        font-size: 2.5rem;
    }
    
    .advantage-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .advantage-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .advantage-item {
        padding: 2rem;
        transform: none !important;
    }
    
    .advantage-item.staggered {
        transform: none !important;
    }
    
    .advantage-icon i {
        font-size: 2.5rem;
    }
    
    .advantage-item h3 {
        font-size: 1.3rem;
    }
    
    .commitment-cta {
        padding: 1.5rem;
    }
    
    .commitment-cta h3 {
        font-size: 1.5rem;
    }
    
    .commitment-cta p {
        font-size: 1rem;
    }
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #2d1b69 70%, #0a0a0a 100%);
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.services-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.services-content p {
    font-size: 1.25rem;
    color: #cccccc;
    line-height: 2.1;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.services-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #2d1b69 70%, #0a0a0a 100%);
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 8rem;
    position: relative;
}

.service-item:nth-child(even) {
    direction: rtl;
}

.service-item:nth-child(even) .service-content {
    direction: ltr;
}

.service-image {
    position: relative;
}

.media-placeholder {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.media-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.media-placeholder:hover::before {
    transform: translateX(100%);
}

.media-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.media-placeholder i {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.media-placeholder:hover i {
    transform: scale(1.1);
}

.media-placeholder p {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

/* Make regular media placeholders bigger (excluding Google Ads) */
.media-placeholder:not(.ad-management-image) i {
    font-size: 5.5rem;
}

.media-placeholder:not(.ad-management-image) p {
    font-size: 1.6rem;
}

.media-placeholder:not(.ad-management-image) .media-label {
    font-size: 1.1rem;
}

.media-label {
    color: #cccccc;
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 400;
}

/* Google Ads Logo Styling */
.ad-management-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.google-ads-logo {
    max-width: 100%;
    max-height: 322px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    transition: transform 0.3s ease;
}

.ad-management-image:hover .google-ads-logo {
    transform: scale(1.05);
}

/* Social Media Logos Styling */
.social-media-logos {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 2rem;
    align-items: center;
    justify-items: center;
    /* Override media-placeholder flex properties */
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
}

.social-logo {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    /* Ensure perfect centering */
    margin: 0 auto;
}

.social-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-logo:hover::before {
    left: 100%;
}

.social-logo i {
    font-size: 1.5rem;
    color: #ffffff;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-logo:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-logo:hover i {
    transform: scale(1.2);
}

/* Individual social media platform colors */
.social-logo.facebook {
    background: linear-gradient(135deg, #1877f2, #0d6efd);
}

.social-logo.instagram {
    background: linear-gradient(135deg, #e4405f, #c13584);
}

.social-logo.twitter {
    background: linear-gradient(135deg, #1da1f2, #0ea5e9);
}

.social-logo.linkedin {
    background: linear-gradient(135deg, #0077b5, #0a66c2);
}

.social-logo.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-logo.tiktok {
    background: #000000;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .social-media-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 1.5rem;
    }
    
    .social-logo {
        width: 50px;
        height: 50px;
    }
    
    .social-logo i {
        font-size: 1.2rem;
    }
}

.service-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-content p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 2.1;
    margin-bottom: 2.5rem;
    text-align: justify;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
}

.service-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #0a0a0a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
}

.service-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    color: #0a0a0a;
}

.services-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #2d1b69 70%, #0a0a0a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 2.1;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Responsive Services Page */
@media (max-width: 768px) {
    .services-content h1 {
        font-size: 2.5rem;
    }
    
    .services-content p {
        font-size: 1.1rem;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .service-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .service-content p {
        font-size: 1rem;
    }
    
    .media-placeholder {
        min-height: 250px;
        padding: 2rem;
    }
    
    .media-placeholder i {
        font-size: 3rem;
    }
    
    .media-placeholder p {
        font-size: 1.1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}
