/* Modern Black & White Design - TD Detailed */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: #000;
    background: #fff;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

/* Header & Navigation */
header {
    background: #000;
    color: #fff;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    animation: fadeInLeft 0.8s ease;
}

.logo h1 .beta-tag {
    background: #fff;
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.6em;
    margin-left: 8px;
    animation: pulse 2s infinite;
}

.nav-dropdown {
    position: relative;
    animation: fadeInRight 0.8s ease;
}

.dropdown-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: all 0.3s ease;
    z-index: -1;
}

.dropdown-btn:hover::before {
    left: 0;
}

.dropdown-btn:hover {
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background: #fff;
    min-width: 200px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    margin-top: 10px;
    padding: 10px 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

.dropdown-content a {
    color: #000;
    padding: 15px 20px;
    text-decoration: none;
    display: block;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-content a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #000;
    transition: all 0.3s ease;
    z-index: -1;
}

.dropdown-content a:hover::before {
    width: 100%;
}

.dropdown-content a:hover {
    color: #fff;
    transform: translateX(5px);
}

.nav-dropdown.open .dropdown-content {
    display: block;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.03) 2px,
        rgba(255, 255, 255, 0.03) 4px
    );
    animation: float 20s infinite linear;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.hero-content h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    animation: slideInFromLeft 1s ease 0.2s both;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: slideInFromLeft 1s ease 0.4s both;
}

/* Buttons */
.cta-button, .btn {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    position: relative;
    overflow: hidden;
    animation: slideInFromLeft 1s ease 0.6s both;
}

.cta-button::before, .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000;
    transition: all 0.3s ease;
    z-index: -1;
}

.cta-button:hover::before, .btn:hover::before {
    left: 0;
}

.cta-button:hover, .btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Quick Links Section */
.quick-links {
    padding: 100px 0;
    background: #fff;
}

.quick-links h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    font-weight: 700;
    animation: fadeInUp 0.8s ease;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.link-card {
    background: #fff;
    border: 2px solid #000;
    border-radius: 20px;
    padding: 40px 30px;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000;
    transition: all 0.3s ease;
    z-index: 1;
}

.link-card:hover::before {
    left: 0;
}

.link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.link-card h3,
.link-card p {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.link-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.link-card p {
    opacity: 0.8;
    line-height: 1.5;
}

/* Services Page */
.services {
    padding: 120px 0 80px;
}

.services-hero {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease;
}

.services-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.8;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    animation: countUp 2s ease;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Cards */
.services-grid, .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: #fff;
    border: 2px solid #000;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000;
    transition: all 0.3s ease;
    z-index: 1;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-card h3,
.service-card .service-description,
.service-card .service-price,
.service-card .service-features,
.service-card p {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.service-card:hover h3,
.service-card:hover .service-description,
.service-card:hover .service-price,
.service-card:hover .service-features,
.service-card:hover p {
    color: #fff;
}

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

.service-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.service-description, .service-card p {
    margin-bottom: 25px;
    line-height: 1.6;
    opacity: 0.8;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #000;
}

.service-card:hover .service-features li::before {
    color: #fff;
}

/* About Page */
.about {
    padding: 120px 0 80px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

.about h1 {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: -2px;
}

.about-story h2 {
    font-size: 2.5rem;
    margin: 40px 0 20px;
    font-weight: 600;
}

.about-story ul {
    list-style: none;
    margin: 30px 0;
}

.about-story li {
    padding: 15px 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
    animation: slideInFromLeft 0.8s ease;
}

.about-story li::before {
    content: '▪';
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    color: #000;
}

.about-cta {
    background: #000;
    color: #fff;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
    animation: fadeInUp 0.8s ease;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.about-cta .cta-button {
    background: #fff;
    color: #000;
}

.about-cta .cta-button:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* Pricing Page */
.pricing-hero {
    background: #000;
    color: #fff;
    padding: 120px 0 80px;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 80px 0;
}

.pricing-card {
    background: #fff;
    border: 2px solid #000;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000;
    transition: all 0.3s ease;
    z-index: 1;
}

.pricing-card:hover::before {
    left: 0;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pricing-card h3,
.pricing-card .price,
.pricing-card .description {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.pricing-card:hover h3,
.pricing-card:hover .price,
.pricing-card:hover .description {
    color: #fff;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.price-currency {
    font-size: 2rem;
    vertical-align: top;
}

.description {
    margin-bottom: 30px;
    opacity: 0.8;
    line-height: 1.5;
}

.book-btn {
    background: #000;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    border: 2px solid #000;
}

.book-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

.pricing-card:hover .book-btn {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.pricing-card:hover .book-btn:hover {
    background: transparent;
    color: #fff;
}

/* Contact/Form Styles */
.contact {
    padding: 120px 0 80px;
}

.contact h1 {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: -2px;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    animation: fadeInUp 0.8s ease;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-form, .message-form {
    background: #000;
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    animation: fadeInUp 0.8s ease;
}

.contact-form h2, .message-form h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #333;
    border-radius: 10px;
    background: #fff;
    color: #000;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 60px 0;
    margin-top: 80px;
}

footer p {
    font-size: 1rem;
    opacity: 0.8;
    animation: fadeInUp 0.8s ease;
}

/* Special styles for form pages */
.get-in-touch-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.get-in-touch-header {
    text-align: center;
    margin-bottom: 50px;
}

.get-in-touch-header h1 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 20px;
}

.get-in-touch-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.submit-btn {
    background: #000;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Additional utility classes */
.pricing-note {
    background: #f8f9fa;
    border-left: 4px solid #000;
    padding: 20px;
    margin: 40px 0;
    border-radius: 0 8px 8px 0;
}

.pricing-note h3, .pricing-note h4 {
    margin-bottom: 10px;
    color: #000;
}

.pricing-note p {
    color: #666;
    margin: 0;
}

/* Success and error messages */
.success-message,
.error-message {
    display: none;
    margin-top: 20px;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

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

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid, .service-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .about h1,
    .services-hero h1,
    .pricing-hero h1,
    .contact h1 {
        font-size: 2.5rem;
    }
    
    .quick-links h2 {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .get-in-touch-header h1 {
        font-size: 2rem;
    }
    
    .message-form, .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    nav {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .dropdown-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .about h1,
    .services-hero h1,
    .pricing-hero h1,
    .contact h1 {
        font-size: 2rem;
    }
}
