/* Landing Page Styles - Converted from Tailwind */

/* Global Landing Page Styles */
.landing-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #e0e7ff 100%);
}

/* Custom cursor for hover effects */
.cursor-amplified {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24" fill="none"><path d="M3 3L10.07 19.97L12.58 12.58L19.97 10.07L3 3Z" fill="black" stroke="white" stroke-width="1"/></svg>') 8 8, auto;
}

/* Navigation Styles */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.2);
    z-index: 50;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav-logo a {
    font-weight: bold;
    font-size: 1.25rem;
    color: #111827;
    text-decoration: none;
}

.nav-menu {
    display: none;
    gap: 2rem;
}

.nav-link {
    background: none;
    border: none;
    color: #374151;
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.nav-link:hover {
    color: #2563eb;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 2rem;
    }
}

/* Hero Section */
.hero-section {
    padding-top: 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, transparent 50%, rgba(79, 70, 229, 0.1) 100%);
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-headings {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-title-accent {
    display: block;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4b5563;
}

.location-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.hero-visual {
    display: none;
}

.hero-animation {
    position: relative;
    width: 24rem;
    height: 24rem;
    margin: 0 auto;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-circle-1 {
    inset: 0;
    background: linear-gradient(135deg, #3b82f6, #4f46e5);
    opacity: 0.2;
}

.hero-circle-2 {
    top: 3rem;
    left: 3rem;
    width: 18rem;
    height: 18rem;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    opacity: 0.3;
    animation-delay: 1s;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .hero-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
    
    .hero-visual {
        display: block;
    }
    
    .hero-container {
        padding: 0 2rem;
    }
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-outline {
    background: transparent;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-outline:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: white;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 32rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    gap: 2rem;
}

.service-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #93c5fd;
}

.service-icon {
    color: #2563eb;
    background: transparent !important;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    fill: none;
    display: block;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.service-description {
    color: #4b5563;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .services-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .services-container {
        padding: 0 2rem;
    }
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-content {
    display: grid;
    gap: 3rem;
    align-items: stretch;
}

.about-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
}

.about-title-accent {
    display: block;
    color: #2563eb;
}

.about-description {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-location {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.location-badge {
    width: 3rem;
    height: 3rem;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.location-city {
    font-weight: 600;
    color: #111827;
}

.location-country {
    color: #4b5563;
}

.about-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-logo {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #dbeafe, #c7d2fe);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 3.75rem;
    font-weight: bold;
    color: rgba(37, 99, 235, 0.3);
}

/* Location Map Styles */
.location-map {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 400px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Fix for responsive-embed wrapper */
.location-map .responsive-embed {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.location-map:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 35px rgba(0, 0, 0, 0.15);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 1rem;
}

.map-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.map-overlay:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

.map-pin {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
    animation: mapPinPulse 2s infinite;
}

.location-details h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.25rem 0;
}

.location-details p {
    font-size: 0.875rem;
    color: #4b5563;
    margin: 0;
}

/* Map pin animation */
@keyframes mapPinPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 4px 8px rgba(37, 99, 235, 0.5);
    }
}

@media (min-width: 640px) {
    .about-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .location-map {
        height: 300px;
    }
    
    .map-overlay {
        top: 0.5rem;
        left: 0.5rem;
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .map-pin {
        width: 2rem;
        height: 2rem;
    }
    
    .location-details h5 {
        font-size: 0.875rem;
    }
    
    .location-details p {
        font-size: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        min-height: 500px;
    }
    
    .about-container {
        padding: 0 2rem;
    }
    
    .location-map {
        min-height: 500px;
    }
}

/* Work Section */
.work-section {
    padding: 5rem 0;
    background: white;
}

.work-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.work-header {
    text-align: center;
    margin-bottom: 4rem;
}

.work-grid {
    display: grid;
    gap: 2rem;
}

.project-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.project-image {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #dbeafe, #c7d2fe);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-placeholder {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgba(37, 99, 235, 0.5);
}

.project-content {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.project-description {
    color: #4b5563;
    margin-bottom: 1rem;
}

.project-btn:hover {
    background: #2563eb;
    color: white;
}

@media (min-width: 640px) {
    .work-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 768px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .work-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .work-container {
        padding: 0 2rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #111827, #1e40af);
    color: white;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #60a5fa;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input,
.form-textarea {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #d1d5db;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.2);
}

.form-textarea {
    resize: none;
    min-height: 6rem;
}

@media (min-width: 640px) {
    .contact-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-container {
        padding: 0 2rem;
    }
}

/* Footer */
.site-footer-landing {
    background: #111827;
    color: white;
    padding: 2rem 0 1rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.footer-copyright {
    color: #9ca3af;
    margin: 0;
}

@media (min-width: 640px) {
    .footer-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-container {
        padding: 0 2rem;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.4;
    }
}