/* Hukuki Danışmanlık 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 */
.hd-section-spacer {
    margin-bottom: 8rem;
}

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

/* Hero Section */
.hd-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;
}

.hd-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;
}

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

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

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

/* Add extra spacing after Hero */
.hd-hero + .section-padding {
    padding-top: 6rem;
}

.hd-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;
}

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

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

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

/* Feature/Service Cards */
.hd-feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--primary);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hd-feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--primary);
}

.hd-feature-card p {
    margin-bottom: 0;
    flex-grow: 1;
    font-size: 0.95rem;
    color: var(--text-light);
}

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

.hd-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

/* Detailed List Section */
.hd-check-list {
    list-style: none;
    padding: 0;
}

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

.hd-check-icon {
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 4px;
}

/* Service List Grid */
.hd-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.hd-service-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

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

.hd-service-item i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: block;
}

.hd-service-item h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.hd-service-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

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

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

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

.hd-form-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.hd-form-btn:hover {
    background: var(--primary-dark);
}
