/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(to right, #007bff, #00bfff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-links a:hover {
    color: #007bff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-links a.active {
    color: #007bff;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
}

.nav-cta {
    background: #6366f1;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(99, 102, 241, 0.3),
        rgba(79, 70, 229, 0.3)
    );
    backdrop-filter: blur(2px);
}

/* Remove darkening effect from both sections */
.hero .video-background video,
.why-us .video-background video {
    filter: none;
}

.hero .video-overlay,
.why-us .video-overlay {
    background: none;
    backdrop-filter: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #818cf8, #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.hero-cta .cta-button {
    background: #007bff;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.hero-cta .cta-button:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.hero-cta .cta-button i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .hero-cta .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: auto;
    }

    .logo img {
        max-width: 120px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }
    
    .nav-links a.active {
        background: rgba(255, 255, 255, 0.15);
    }
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #0f0f0f;
}

.services h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(4px);
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    background-color: rgba(55, 65, 81, 0.5);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #6366f1;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #9ca3af;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #0a0a0a;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: rgba(31, 41, 55, 0.5);
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: #6366f1;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #9ca3af;
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 0;
    background: #f8f9fa;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.portfolio-overlay p {
    color: #fff;
    text-align: center;
    margin-bottom: 1.5rem;
}

.portfolio-link {
    background: #007bff;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.portfolio-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.25rem;
}

.portfolio-item p {
    padding: 0 1.5rem;
    color: #9ca3af;
}

.project-link {
    display: inline-block;
    padding: 1rem 1.5rem;
    color: #6366f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #818cf8;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #0a0a0a;
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #6366f1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #6366f1;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

/* Footer */
footer {
    padding: 3rem 0;
    background: #0f0f0f;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6366f1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #d1d5db;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #6366f1;
}

.copyright {
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.95);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .video-box {
        height: 250px;
        margin-bottom: 2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .meeting-grid {
        grid-template-columns: 1fr;
    }

    .video-section {
        height: 250px;
        margin-top: 2rem;
    }

    .contact-options {
        padding: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .social-links {
        justify-content: center;
    }

    /* Additional mobile optimizations */
    .portfolio-item img {
        max-width: 100%;
        height: auto;
    }

    .service-card {
        padding: 1.5rem;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents iOS zoom on focus */
    }

    .nav-cta {
        width: 100%;
        margin-top: 1rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .service-card,
    .portfolio-item {
        margin: 1rem 0;
    }

    .contact-method {
        padding: 0.75rem;
    }

    /* Additional small screen optimizations */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .benefits-list li {
        padding: 0.75rem;
    }

    .video-section video {
        height: 200px;
    }
}

/* Prevent horizontal scrolling */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Touch-friendly elements */
button, 
a, 
input, 
select, 
textarea {
    touch-action: manipulation;
}

/* Improve tap targets */
.nav-links a,
.contact-method,
.submit-btn,
.time-slot {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Why Us Section */
.why-us {
    padding: 5rem 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.why-us h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.video-box {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    aspect-ratio: 16/9;
}

.video-box .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-box .video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-box .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(99, 102, 241, 0.2), rgba(79, 70, 229, 0.2));
    backdrop-filter: blur(4px);
}

.why-us-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.why-us-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #818cf8, #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.why-us-content p {
    color: #d1d5db;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 3rem;
}

.benefits-list li {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(31, 41, 55, 0.5);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.benefits-list li:hover {
    background: rgba(55, 65, 81, 0.5);
    transform: translateX(10px);
}

.benefits-list i {
    color: #6366f1;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.benefits-list span {
    font-weight: 600;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.benefits-list p {
    color: #9ca3af;
    margin: 0;
    font-size: 0.95rem;
}

.stats-highlight {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 1rem;
    flex: 1;
    backdrop-filter: blur(4px);
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #6366f1;
    margin-bottom: 0.5rem;
}

.stat .label {
    color: #d1d5db;
    font-size: 0.9rem;
}

/* Why Us section specific video styles */
.why-us .video-background video {
    filter: none;
}

.why-us .video-overlay {
    background: none;
    backdrop-filter: none;
}

/* Responsive Design for Why Us Section */
@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .video-box {
        margin-bottom: 2rem;
        aspect-ratio: 16/9;
    }

    .stats-highlight {
        flex-direction: column;
    }
}

/* Book a Meeting Section */
.book-meeting {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.book-meeting h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    background: linear-gradient(to right, #818cf8, #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.meeting-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.video-section {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}

.video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Calendar Styles */
.calendar-column {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
}

.calendar-column h3 {
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 1.5rem;
}

.custom-calendar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.month-nav {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.month-nav:hover {
    background: rgba(99, 102, 241, 0.2);
}

.calendar-header h4 {
    color: white;
    font-size: 1.2rem;
    margin: 0;
    padding: 0;
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.weekdays div {
    color: #6366f1;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 0.9rem;
    padding: 0.5rem;
}

.calendar-day:not(.disabled):hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: #6366f1;
}

.calendar-day.selected {
    background: #6366f1;
    border-color: #6366f1;
    color: white;
}

.calendar-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.05);
}

.calendar-day.today {
    border: 2px solid #6366f1;
    font-weight: bold;
}

.time-slots {
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.time-slots h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: center;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.time-slot {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.time-slot:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: #6366f1;
}

.time-slot.selected {
    background: #6366f1;
    border-color: #6366f1;
}

.selected-datetime {
    text-align: center;
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
}

.selected-datetime p {
    margin: 0;
    color: #a3a3a3;
}

.selected-datetime span {
    color: white;
    font-weight: 600;
}

.confirm-booking {
    width: 100%;
    background: #6366f1;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.confirm-booking:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

.calendar-note {
    color: #a3a3a3;
    font-size: 0.9rem;
    text-align: center;
}

/* Contact Options Styles */
.contact-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quick-contact, .direct-contact, .business-hours {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
    background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
    background: #6366f1;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

/* Direct Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.contact-method i {
    font-size: 1.25rem;
    color: #6366f1;
}

/* Business Hours */
.business-hours ul {
    list-style: none;
    padding: 0;
}

.business-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.business-hours li:last-child {
    border-bottom: none;
}

.timezone {
    color: #a3a3a3;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* FAQ Section */
.meeting-faq {
    margin-top: 4rem;
}

.meeting-faq h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item h4 {
    color: #6366f1;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .meeting-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .calendly-inline-widget {
        height: 500px;
    }

    .calendar-day {
        font-size: 0.8rem;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .video-section {
        height: 300px;
    }

    /* Additional mobile optimizations */
    .portfolio-item img {
        max-width: 100%;
        height: auto;
    }

    .service-card {
        padding: 1.5rem;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents iOS zoom on focus */
    }

    .nav-cta {
        width: 100%;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .service-card,
    .portfolio-item {
        margin: 1rem 0;
    }

    .contact-method {
        padding: 0.75rem;
    }

    /* Additional small screen optimizations */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .benefits-list li {
        padding: 0.75rem;
    }

    .video-section video {
        height: 200px;
    }
}

/* Touch device optimizations */
@media (hover: none) {
    .service-card:hover,
    .portfolio-item:hover,
    .contact-method:hover {
        transform: none;
    }

    .nav-links a,
    .footer-links a {
        padding: 0.5rem 0;
    }
}

.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 0.5rem;
    background: rgba(10, 10, 10, 0.8);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236366f1' 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: 1.5em;
}

.form-group select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

.form-group select option {
    background: #0a0a0a;
    color: #ffffff;
    padding: 1rem;
}

.form-group select:hover {
    border-color: #6366f1;
}

/* Style for the dropdown when opened */
.form-group select:focus option:checked {
    background: #6366f1;
    color: #ffffff;
}

/* Style for options when hovering */
.form-group select option:hover {
    background: #4f46e5;
}

/* Mobile Navigation Styles */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-width: 150px;
    height: auto;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #007bff;
}

.cta-button {
    margin-left: 1rem;
}

.cta-button a {
    background: #007bff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: #fff;
    transition: all 0.3s ease;
}

.cta-button a:hover {
    background: #0056b3;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .cta-button {
        margin: 1rem 0 0 0;
        width: 100%;
        text-align: center;
    }

    .cta-button a {
        display: block;
        width: 100%;
    }
} 