/* Patent Tescil Custom Page Styles */

/* General Spacing Improvements */
p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

/* Section Spacing */
.pt-section-spacer {
    margin-bottom: 8rem; /* Increased from 6rem to 8rem for more breathing room */
}

.pt-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

/* Hero Section */
.pt-hero {
    background-color: var(--primary);
    background-image: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    background-size: 100% 100%;
    padding: 8rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.pt-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(60px);
    pointer-events: none;
}

.pt-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: white;
}

.pt-hero p {
    font-size: 1.35rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.pt-hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Add extra spacing after Hero */
.pt-hero + .section-padding {
    padding-top: 6rem; /* Extra top padding for the content section */
}

.pt-btn {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s;
    font-size: 1.1rem;
}

.pt-btn:hover {
    transform: translateY(-2px);
}

.pt-btn-primary {
    background: var(--accent);
    color: white;
}

.pt-btn-outline {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
    .pt-hero { padding: 4rem 0; }
    .pt-hero h1 { font-size: 2rem; }
    .pt-hero p { font-size: 1rem; }
    .pt-features { gap: 2rem; }
    .pt-section-spacer { margin-bottom: 4rem; }
}

/* Info Section */
.pt-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 5rem;
}

.pt-check-list {
    list-style: none;
    padding: 0;
}

.pt-check-list li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pt-check-list.small li {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.pt-check-icon {
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Process Steps / Features */
.pt-feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pt-feature-card h3 {
    margin-bottom: 1.5rem;
}

.pt-feature-card p {
    margin-bottom: 0;
    flex-grow: 1;
}

.pt-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.pt-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Comparison Cards */
.pt-comparison-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--primary);
    transition: transform 0.3s ease;
    height: 100%;
    margin-bottom: 2rem;
}

.pt-comparison-card:hover {
    transform: translateY(-8px);
}

.pt-comparison-card.accent {
    border-top-color: var(--accent);
}

.pt-comparison-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.pt-comparison-duration {
    display: inline-block;
    background: #f1f5f9;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Service List */
.pt-service-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.pt-service-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.pt-service-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light);
    transform: translateX(5px);
}

.pt-service-icon {
    color: var(--accent);
    font-size: 1.5rem;
}

/* Form Box */
.pt-form-box {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--accent);
}

.pt-form-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    transition: border-color 0.3s;
}

.pt-form-input:focus {
    border-color: var(--accent);
    outline: none;
}

.pt-form-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.pt-form-btn:hover {
    background: var(--accent-dark);
}

/* Stats Section */
.pt-stats {
    background: var(--primary);
    color: white;
    border-radius: var(--radius-lg);
    padding: 5rem 2rem; /* Increased padding */
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    text-align: center;
    margin-top: 6rem; /* Increased margin top */
    margin-bottom: 4rem; /* Increased margin bottom for footer spacing */
    box-shadow: var(--shadow-lg);
}

.pt-stat-item h4 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.pt-stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
    color: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
    .pt-hero h1 {
        font-size: 2.5rem;
    }
    
    .text-center-mobile {
        text-align: center;
    }
    
    .pt-hero-actions {
        justify-content: center;
    }
    
    .pt-stats {
        flex-direction: column;
        gap: 3rem;
        padding: 3rem 1.5rem;
    }
}
