/* =================================
   Service Detail Page Styles
   ================================= */

/* CSS Variables for Service Detail Design */
:root {
    --detail-primary: #549076;
    --detail-secondary: #467a63;
    --detail-accent: #dd3333;
    --detail-light: #f8fffe;
    --detail-dark: #2c3e50;
    --detail-border: #e8f4f0;
    --detail-shadow: rgba(84, 144, 118, 0.15);
    --detail-gradient: linear-gradient(135deg, #549076 0%, #467a63 100%);
    --detail-radius: 12px;
    --detail-spacing: 2rem;
    --detail-text: #4a5568;
    --detail-light-text: #718096;
}

/* Service Detail Main Content */
.service-detail-content {
    padding: var(--detail-spacing) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fffe 100%);
    min-height: 600px;
}

/* Service Detail Header */
.service-detail-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: var(--detail-gradient);
    color: white;
    border-radius: var(--detail-radius);
    position: relative;
    overflow: hidden;
}

.service-detail-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 Q40,10 60,20 T100,20 V100 Q80,90 60,100 T20,100 Z" fill="%23ffffff" opacity="0.1"/></svg>');
    background-size: cover;
}

.service-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-detail-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Detail Introduction */
.service-intro-section {
    background: white;
    padding: 3rem 0;
    border-bottom: 1px solid var(--detail-border);
}

.service-intro-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: center;
}

.service-intro-text h2 {
    color: var(--detail-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-intro-text p {
    color: var(--detail-text);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-highlight-badge {
    display: inline-block;
    background: var(--detail-gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--detail-shadow);
}

.service-intro-image {
    position: relative;
    border-radius: var(--detail-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--detail-shadow);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.service-intro-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.service-intro-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--detail-radius);
}

/* Service Detail Process Steps */
.service-process-section {
    background: var(--detail-light);
    padding: 4rem 0;
}

.service-process-title {
    text-align: center;
    color: var(--detail-primary);
    font-size: 2.2rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.service-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: var(--detail-radius);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--detail-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-step:hover::before {
    transform: scaleX(1);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(84, 144, 118, 0.2);
}

.process-step-number {
    width: 60px;
    height: 60px;
    background: var(--detail-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px var(--detail-shadow);
}

.process-step h4 {
    color: var(--detail-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    color: var(--detail-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Service Detail Process Image */
.service-process-image {
    text-align: center;
    margin: 3rem 0;
}

.service-process-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(84, 144, 118, 0.2));
}

/* Service Detail Pricing Table */
.service-pricing-section {
    background: white;
    padding: 4rem 0;
}

.service-pricing-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.service-pricing-intro h2 {
    color: var(--detail-primary);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-pricing-intro p {
    color: var(--detail-text);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-table-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Modern Pricing Table */
.pricing-table {
    width: 100%;
    background: white;
    border-radius: var(--detail-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--detail-border);
}

.pricing-table thead th {
    background: var(--detail-gradient);
    color: white;
    padding: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    border: none;
}

.pricing-table tbody tr {
    transition: background-color 0.2s ease;
}

.pricing-table tbody tr:nth-child(even) {
    background: #f8fffe;
}

.pricing-table tbody tr:hover {
    background: rgba(84, 144, 118, 0.05);
}

.pricing-table tbody td {
    padding: 1rem;
    border-bottom: 1px solid var(--detail-border);
    font-size: 0.9rem;
    color: var(--detail-text);
}

.pricing-table tbody td:first-child {
    font-weight: 600;
    color: var(--detail-primary);
}

.pricing-highlight-row td {
    background: rgba(84, 144, 118, 0.1) !important;
    font-weight: 600;
}

/* Service Detail Accordion */
.service-accordion-section {
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.service-accordion-title {
    text-align: center;
    color: var(--detail-primary);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.service-accordion-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--detail-primary), var(--detail-secondary));
    border-radius: 2px;
}

.service-accordion {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.accordion-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(84, 144, 118, 0.08);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    align-self: start;
}

.accordion-item:hover {
    box-shadow: 0 15px 35px rgba(84, 144, 118, 0.2);
    transform: translateY(-2px);
    border-color: rgba(84, 144, 118, 0.2);
}

.accordion-item.active {
    border-color: var(--detail-primary);
}

.accordion-header {
    background: linear-gradient(135deg, var(--detail-primary) 0%, #467a63 100%);
    color: white;
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    gap: 1rem;
    min-height: 50px;
}

.accordion-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.accordion-header:hover::before {
    left: 100%;
}

.accordion-header:hover {
    background: linear-gradient(135deg, #467a63 0%, var(--detail-primary) 100%);
}

.accordion-header span {
    position: relative;
    z-index: 1;
}

.accordion-icon {
    transition: all 0.4s ease;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    line-height: 0;
}

.accordion-icon i {
    display: block;
    line-height: 0;
    margin: 0;
    padding: 0;
    position: relative;
    top: 0;
    left: 0;
    transform: translateY(0px);
}

/* Icon rotation handled by JavaScript for better control */

.accordion-content {
    padding: 0 2rem;
    background: white;
    line-height: 1.6;
    color: var(--detail-text);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.accordion-item.active .accordion-content {
    max-height: 400px;
    padding: 1.5rem;
    opacity: 1;
    border-top: 2px solid var(--detail-primary);
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease 0.1s;
}

.accordion-content h4 {
    color: var(--detail-primary);
    margin-bottom: 0.6rem;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding-left: 1rem;
}

.accordion-content h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 16px;
    background: var(--detail-gradient);
    border-radius: 2px;
}

.accordion-content h4:first-child {
    margin-top: 0;
}

.accordion-content p {
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
    text-align: justify;
    line-height: 1.5;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

/* Service Summary Section */
.service-summary-section {
    background: var(--detail-gradient);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-summary-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="20" fill="%23ffffff" opacity="0.1"/><circle cx="20" cy="20" r="10" fill="%23ffffff" opacity="0.05"/><circle cx="80" cy="80" r="15" fill="%23ffffff" opacity="0.08"/></svg>');
    background-size: 200px;
}

.service-summary-content {
    position: relative;
    z-index: 1;
}

.service-summary-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-summary-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    text-align: left;
}

.summary-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--detail-radius);
    border-left: 4px solid white;
    backdrop-filter: blur(10px);
}

.summary-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.summary-item p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Service CTA Section */
.service-cta-section {
    background: white;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--detail-border);
}

.service-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.service-cta-text h3 {
    color: var(--detail-primary);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-cta-text p {
    color: var(--detail-text);
    font-size: 1rem;
    margin: 0;
}

.service-cta-buttons {
    display: flex;
    gap: 1rem;
}

.service-cta-btn {
    background: var(--detail-gradient);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px var(--detail-shadow);
}

.service-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(84, 144, 118, 0.3);
    color: white;
    text-decoration: none;
}

.service-cta-btn.secondary {
    background: white;
    color: var(--detail-primary);
    border: 2px solid var(--detail-primary);
}

.service-cta-btn.secondary:hover {
    background: var(--detail-primary);
    color: white;
}

.service-accordion .accordion-item button.accordion-header i {
    display: flex;
}

/* ===========================
   Ramazan Schedule Section 
   =========================== */

.ramazan-schedule-section {
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}


.schedule-intro {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.schedule-highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--detail-gradient);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(28, 163, 142, 0.3);
}

.schedule-highlight-badge i {
    font-size: 1.1rem;
    animation: moonPulse 2s ease-in-out infinite;
}

@keyframes moonPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.ramazan-schedule-section h2 {
    color: var(--detail-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--detail-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.schedule-intro > p {
    color: var(--detail-text);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    line-height: 1.8;
}

.schedule-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(28, 163, 142, 0.1);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28, 163, 142, 0.15);
    border-color: var(--detail-primary);
}

.info-item i {
    color: var(--detail-primary);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.info-item span {
    color: var(--detail-text);
    font-weight: 500;
}

/* Schedule Table */
.schedule-table-container {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
    margin: 2rem 0;
    contain: layout;
}

.table-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    background: white;
}

.ramazan-schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-family: 'Open Sans', sans-serif;
    position: relative;
}

.ramazan-schedule-table thead {
    background: var(--detail-gradient);
    color: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

.ramazan-schedule-table th {
    padding: 1.2rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.ramazan-schedule-table th:last-child {
    border-right: none;
}

.ramazan-schedule-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.ramazan-schedule-table tbody tr:hover {
    background: rgba(28, 163, 142, 0.05);
    box-shadow: 0 2px 8px rgba(28, 163, 142, 0.15);
}

.ramazan-schedule-table tbody tr:nth-child(even) {
    background: rgba(248, 255, 254, 0.5);
}

.ramazan-schedule-table tbody tr:nth-child(even):hover {
    background: rgba(28, 163, 142, 0.08);
}

.ramazan-schedule-table td {
    padding: 1rem 0.8rem;
    text-align: center;
    color: var(--detail-text);
    font-weight: 500;
    border-right: 1px solid #f5f5f5;
    vertical-align: middle;
    font-size: 0.9rem;
}

.ramazan-schedule-table td:last-child {
    border-right: none;
}

.ramazan-schedule-table td:first-child {
    font-weight: 600;
    color: var(--detail-primary);
}

.ramazan-schedule-table td:nth-child(2) {
    font-weight: 600;
    color: #2c3e50;
    white-space: nowrap;
}

/* İftar Time Highlight */
.iftar-time {
    background: linear-gradient(135deg, #ff6b35, #f7931e) !important;
    color: white !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    position: relative;
    overflow: hidden;
}

.iftar-time::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Kadir Night Special Styling */
.kadir-night {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    color: white !important;
    position: relative;
}

.kadir-night td {
    color: white !important;
    font-weight: 600 !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}
.kadir-night td:first-child::before {
    content: '⭐';
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    animation: starTwinkle 2s ease-in-out infinite;
}
@keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
    50% { opacity: 0.7; transform: translateY(-50%) scale(1.1); }
}

.kadir-notice {
    background: linear-gradient(135deg, #ffd700, #ff8c00) !important;
    color: #2c3e50 !important;
    text-align: center !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    padding: 1.5rem !important;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.kadir-notice i {
    margin-right: 0.5rem;
    animation: starSpin 4s linear infinite;
}

@keyframes starSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}



/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
    padding: 2rem 0;
    position: relative;
}

.contact-form-intro {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.contact-highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--detail-primary) 0%, var(--detail-secondary) 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(84, 144, 118, 0.3);
    animation: contactPulse 2s ease-in-out infinite;
}

.contact-highlight-badge i {
    animation: contactRing 2s ease-in-out infinite;
}

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

@keyframes contactRing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.contact-form-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--detail-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.contact-form-intro > p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--detail-primary), var(--detail-secondary));
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--detail-primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--detail-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(84, 144, 118, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-submit {
    margin-top: 1rem;
}

.submit-btn {
    background: linear-gradient(135deg, var(--detail-primary) 0%, var(--detail-secondary) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 150px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--detail-secondary) 0%, var(--detail-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(84, 144, 118, 0.3);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(3px);
}

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

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--detail-secondary), var(--detail-primary));
}

.info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.info-header i {
    background: linear-gradient(135deg, var(--detail-primary), var(--detail-secondary));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-header h3 {
    color: var(--detail-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.contact-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.5rem 0;
}

.contact-service-list li i {
    color: var(--detail-primary);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-service-list li span {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
}

.emergency-contact {
    background: linear-gradient(135deg, var(--detail-primary) 0%, var(--detail-secondary) 100%);
    color: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.emergency-contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.emergency-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.emergency-header i {
    font-size: 1.5rem;
    animation: emergencyBlink 2s ease-in-out infinite;
}

.emergency-header h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

@keyframes emergencyBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.emergency-number {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.emergency-number:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    color: white;
}

.emergency-note {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-accordion {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .accordion-content h4 {
        font-size: 1.05rem;
    }

    .accordion-content p {
        font-size: 0.95rem;
    }

    /* Ramazan Schedule Mobile */
    .ramazan-schedule-section {
        margin: 2rem 0;
        padding: 2rem 0;
        border-radius: 15px;
    }

    .ramazan-schedule-section h2 {
        font-size: 2rem;
    }

    .schedule-info {
        gap: 1rem;
    }

    .info-item {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .ramazan-schedule-table {
        font-size: 0.8rem;
    }

    .ramazan-schedule-table th,
    .ramazan-schedule-table td {
        padding: 0.8rem 0.4rem;
    }



    .schedule-table-container {
        border-radius: 15px;
    }

    .ramazan-schedule-table th {
        font-size: 0.85rem;
        padding: 1rem 0.6rem;
    }

    .ramazan-schedule-table td {
        font-size: 0.85rem;
        padding: 0.9rem 0.6rem;
    }

    /* Contact Form Mobile */
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-section h2 {
        font-size: 1.8rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .form-row {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    :root {
        --detail-spacing: 1.5rem;
    }
    
    .service-detail-title {
        font-size: 2rem;
    }
    
    .service-detail-subtitle {
        font-size: 1rem;
    }
    
    .service-intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-intro-image {
        transform: none;
    }
    
    .service-process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-table-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-summary-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .service-cta-buttons {
        justify-content: center;
    }
    
    .service-accordion-title {
        font-size: 2rem;
    }

    .service-accordion {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .accordion-header {
        padding: 1.5rem 1.8rem;
        font-size: 1rem;
    }

    .accordion-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .accordion-icon i {
        line-height: 0;
    }
    
    .accordion-content {
        padding: 0 1.5rem;
    }
    
    .accordion-item.active .accordion-content {
        padding: 1.5rem;
        max-height: 500px;
    }

    .accordion-content h4 {
        font-size: 1rem;
        padding-left: 1rem;
    }

    .accordion-content h4::before {
        width: 3px;
        height: 14px;
    }

    .accordion-content p {
        font-size: 0.85rem;
    }

    /* Contact Form Tablet */
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-section {
        padding: 1.5rem 0;
    }

    .contact-form-section h2 {
        font-size: 1.8rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .emergency-number {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .service-process-title,
    .service-pricing-intro h2,
    .service-accordion-title,
    .service-summary-title {
        font-size: 1.8rem;
    }
    
    .service-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-cta-btn {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }

    .service-accordion {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .accordion-header {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }

    .accordion-icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .accordion-icon i {
        line-height: 0;
    }

    .accordion-content {
        padding: 0 1.2rem;
    }

    .accordion-item.active .accordion-content {
        padding: 1.2rem;
        max-height: 400px;
    }

    .accordion-content h4 {
        font-size: 0.95rem;
        padding-left: 0.8rem;
    }

    .accordion-content h4::before {
        width: 2px;
        height: 12px;
    }

    .accordion-content p {
        font-size: 0.8rem;
    }

    /* Ramazan Schedule Mobile 480px */
    .ramazan-schedule-section {
        margin: 1.5rem 0;
        padding: 1.5rem 0;
    }

    .ramazan-schedule-section h2 {
        font-size: 1.6rem;
    }

    .schedule-intro > p {
        font-size: 1rem;
    }

    .schedule-info {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .info-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }

    .schedule-table-container {
        margin: 1.5rem 0;
        border-radius: 10px;
    }

    .ramazan-schedule-table {
        font-size: 0.7rem;
    }

    .ramazan-schedule-table th {
        padding: 0.8rem 0.3rem;
        font-size: 0.7rem;
    }

    .ramazan-schedule-table td {
        padding: 0.7rem 0.3rem;
        font-size: 0.7rem;
    }

    .ramazan-schedule-table td:nth-child(2) {
        font-size: 0.65rem;
    }

    /* Contact Form Mobile */
    .contact-form-section {
        padding: 1rem 0;
    }

    .contact-form-section h2 {
        font-size: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .submit-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .contact-service-list li span {
        font-size: 0.85rem;
    }

    .emergency-contact {
        padding: 1.5rem;
    }

    .emergency-number {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }

}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

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

.scale-in {
    animation: scaleIn 0.6s ease forwards;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-primary { color: var(--detail-primary); }
.bg-light { background: var(--detail-light); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }

/* ===== CIRCULAR PROCESS FLOW SECTION ===== */
.circular-process-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.circular-process-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.circular-process-title {
    text-align: center;
    margin-bottom: 3rem;
}

.circular-process-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--detail-primary);
    margin-bottom: 1rem;
    position: relative;
}

.circular-process-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--detail-primary), var(--detail-secondary));
    border-radius: 2px;
}

.circular-process-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.circular-process-flow {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.process-step-circular {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 800px;
    position: relative;
    z-index: 3;
}

.process-step-circular:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step-circular:nth-child(even) .step-content {
    text-align: right;
}

.process-step-circular:nth-child(even) .step-connector {
    transform: scaleX(-1);
}

.step-number-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--detail-primary), #467a63);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 25px rgba(84, 144, 118, 0.3);
    position: relative;
    z-index: 4;
    transition: all 0.3s ease;
}

.step-number-circle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--detail-primary), #467a63);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.process-step-circular:hover .step-number-circle {
    transform: scale(1.1);
}

.process-step-circular:hover .step-number-circle::before {
    opacity: 0.3;
    animation: pulse-ring 2s ease-out infinite;
}

.step-connector {
    width: 120px;
    height: 60px;
    margin: 0 1rem;
    position: relative;
}

.step-connector svg {
    width: 100%;
    height: 100%;
    stroke: var(--detail-primary);
    stroke-width: 3;
    fill: none;
    opacity: 0.6;
}

.step-connector svg polygon {
    fill: var(--detail-primary);
    opacity: 1;
}



.step-content {
    flex: 1;
    max-width: 400px;
}

.step-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--detail-primary);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.step-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Pulse ring animation */
@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Background rotation animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .circular-process-section {
        padding: 3rem 0;
    }
    
    .circular-process-title h2 {
        font-size: 2rem;
    }
    
    .process-step-circular {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem;
    }
    
    .process-step-circular:nth-child(even) .step-content {
        text-align: center !important;
    }
    
    .step-connector {
        transform: rotate(90deg) !important;
        width: 60px;
        height: 60px;
        margin: 0.5rem 0;
    }
    
    .step-number-circle {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }
    
    .step-content {
        max-width: 100%;
    }
    
    .step-content h4 {
        font-size: 1.2rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .circular-process-container {
        padding: 0 1rem;
    }
    
    .circular-process-title h2 {
        font-size: 1.8rem;
    }
    
    .step-number-circle {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
} 