/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hidden {
    display: none !important;
}

/* Go Home Button Styles */
.go-home-button {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    z-index: 999999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.go-home-button:hover {
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.go-home-button svg {
    width: 2rem;
    height: 2rem;
    color: white;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    background-color: #121212;
    color: #f5f5f5;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100vw;
    margin: 0;
    padding: 0;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    margin: 0 auto;
}

/* Background Elements */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(45deg, #7a1f1f33, #1f7a3b33);
    animation: float 20s infinite ease-in-out;
    filter: blur(60px);
}

.floating-element:nth-child(1) {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: -5%;
    animation-delay: -7s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    33% { transform: translateY(-30px) scale(1.1); }
    66% { transform: translateY(15px) scale(0.9); }
}

/* Main Content */
.content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    animation: fadeInUp 1s ease-out;
    margin: 0 auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Profile Section */
.profile-section {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.profile-image-container {
    position: relative;
    width: 200px;
    height: 200px;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #cecece;
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
}

.profile-image:hover {
    border-color: #22c55e;
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.3);
    transform: scale(1.05);
}

.profile-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f97316, #cecece);
    z-index: -1;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.profile-info {
    text-align: center;
    max-width: 400px;
}

.name {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #f97316, #cecece);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: -200% center; }
    50% { background-position: 200% center; }
}

.tagline {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    font-style: italic;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
}

/* Business Links */
.business-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.business-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 20px;
    text-decoration: none;
    color: #f5f5f5;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    opacity: 1;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s;
}

.business-card:hover::before {
    left: 100%;
}

.business-card.plumbing {
    background: linear-gradient(135deg, #1f7a3b55, #1f7a3b33);
    border-color: #22c55e;
}

.business-card.videography {
    background: linear-gradient(135deg, #7a1f1f55, #7a1f1f33);
    border-color: #f97316;
}

.business-card.facetime {
    background: linear-gradient(135deg, #7a1f1f55, #7a1f1f33);
    border-color: #8d9c3a;
    animation: pulse-border 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.business-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    opacity: 1;
}

.business-card.plumbing:hover {
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

.business-card.videography:hover {
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
}

.business-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.business-card.plumbing .business-icon {
    background: #22c55e;
    color: #121212;
}

.business-card.videography .business-icon {
    background: #f97316;
    color: #121212;
}

.business-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
}

.business-icon svg {
    width: 30px;
    height: 30px;
}

.business-content {
    flex: 1;
    position: relative;
}

.business-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.business-content p {
    opacity: 0.8;
    line-height: 1.4;
}

.business-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.business-card:hover .business-arrow {
    opacity: 1;
    transform: translateY(-50%) translateX(10px);
}

.business-card:hover .business-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Transition Overlay */
.transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.transition-overlay.active {
    transform: translateY(0);
}

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

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #333;
    border-top: 3px solid #f97316;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}


input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(.5);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.transition-text {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .profile-section {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .name {
        font-size: 2.5rem;
    }
    
    .business-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .business-arrow {
        position: static;
        transform: none;
        margin-top: 1rem;
    }
    
    .business-card:hover .business-arrow {
        transform: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .profile-image-container {
        width: 150px;
        height: 150px;
    }
    
    .name {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
}

/* Tailwind CSS Classes for form styling */
.w-full { width: 100%; }
.p-3 { padding: 0.75rem; }
.rounded { border-radius: 0.375rem; }
.bg-\[#1e1e1e\] { background-color: #1e1e1e; }
.text-white { color: white; }
.text-\[#9ca3af\] { color: #9ca3af; }
.border { border-width: 1px; }
.border-gray-700 { border-color: #374151; }
.outline-none { outline: none; }
.transition { transition: all 0.15s ease-in-out; }
.focus\:border-green-500:focus { border-color: #22c55e; }
.max-w-3xl { max-width: 48rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.grid { display: grid; }
.gap-6 { gap: 1.5rem; }
.inline-block { display: inline-block; }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.from-\[#1f7a3b\] { --tw-gradient-from: #1f7a3b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 122, 59, 0)); }
.via-\[#2aa42a\] { --tw-gradient-stops: var(--tw-gradient-from), #2aa42a, var(--tw-gradient-to, rgba(42, 164, 42, 0)); }
.to-\[#1f7a3b\] { --tw-gradient-to: #1f7a3b; }
.font-semibold { font-weight: 600; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.duration-300 { transition-duration: 300ms; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.transform { transform: translateX(0) translateY(0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1); }
.hover\:scale-100:hover { transform: scale(1); }
.hover\:brightness-110:hover { filter: brightness(1.1); }

/* Apply gradient background to button */
.bg-gradient-to-r.from-\[#1f7a3b\].via-\[#2aa42a\].to-\[#1f7a3b\] {
    background: linear-gradient(to right, #1f7a3b, #2aa42a, #1f7a3b);
}

/* Scheduling Form Styles - Matching Plumbing Site */
.scheduling-form-container {
    max-width: 48rem; /* max-w-3xl */
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, #1f7a3b22, #1f7a3b11);
    border-radius: 20px;
    border: 2px solid #22c55e33;
    backdrop-filter: blur(10px);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #22c55e, #f5f5f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    color: #cecece;
    font-size: 1.1rem;
    opacity: 0.9;
}

.what-to-expect {
    margin-top: 3rem;
    padding: 2rem;
    background: #1e1e1e;
    border-radius: 15px;
    border: 1px solid #333;
}

.what-to-expect h3 {
    color: #f5f5f5;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
}

.expectations-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.expectation-item {
    background: #121212;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #444;
}

.expectation-item h4 {
    color: #22c55e;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.expectation-item ul {
    list-style: none;
    padding: 0;
}

.expectation-item li {
    color: #cecece;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.expectation-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

/* Responsive adjustments for scheduling form */
@media (max-width: 768px) {
    .scheduling-form-container {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .expectations-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .form-input {
        padding: 0.8rem;
    }
    
    .submit-button {
        padding: 0.8rem 1.5rem;
    }
}

/* Pulse animation for border */
@keyframes pulse-border {
    0%, 100% {
        border-color: #22c55e;
        background: black;
    }
    25% {
        border-color: rgb(255, 255, 255, .75);
        background: rgb(255, 255, 255, .05);
        border-color: rgb(255, 255, 0);
        background: rgb(255, 255, 0, .1);
    }
    50% {
        border-color: #f97316;
        background: black;
    }
    75% {
        border-color: rgb(255, 255, 255, .75);
        background: rgb(255, 255, 255, .05);
        border-color: rgb(255, 255, 0);
        background: rgb(255, 255, 0, .1);
    }
}
