/* ===== Hero Section - Split Screen (Mobile First) ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.18) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(244, 162, 97, 0.12) 0%, transparent 50%);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: #f4b8a6;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    backdrop-filter: blur(10px);
}

.hero-badge svg {
    width: 14px;
    height: 14px;
    color: var(--secondary);
}

.hero-title {
    font-size: clamp(2.25rem, 7vw, 3.75rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: var(--space-md);
    color: white;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: var(--secondary);
    position: relative;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.hero-buttons .btn {
    width: 100%;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--secondary);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-image {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
}

.hero-image svg {
    width: 60%;
    height: 60%;
    color: var(--primary);
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.hero-floating {
    position: absolute;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    animation: float 4s ease-in-out infinite;
}

.hero-floating svg {
    width: 20px;
    height: 20px;
    color: var(--secondary);
}

.hero-floating.top {
    top: 5%;
    right: 0;
    animation-delay: 0s;
}

.hero-floating.right {
    bottom: 25%;
    right: -10px;
    animation-delay: 1s;
}

.hero-floating.bottom {
    bottom: 5%;
    left: 0;
    animation-delay: 2s;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.hero-shape.one {
    width: 120px;
    height: 120px;
    background: rgba(249, 115, 22, 0.2);
    top: -20px;
    left: -30px;
}

.hero-shape.two {
    width: 80px;
    height: 80px;
    background: rgba(244, 162, 97, 0.18);
    bottom: 60px;
    right: -20px;
}

.hero-shape.three {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    bottom: -10px;
    left: 30%;
}

/* ===== Cards ===== */
.card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition-base);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: rgba(249, 115, 22, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    transition: var(--transition-base);
}

.card:hover .card-icon {
    background: var(--secondary);
}

.card-icon svg,
.card-icon img {
    width: 28px;
    height: 28px;
    color: var(--primary);
    transition: var(--transition-base);
}

.card:hover .card-icon svg,
.card:hover .card-icon img {
    color: white;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== Feature Lists ===== */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.feature-list li svg,
.feature-list li img {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

/* ===== Forms ===== */
.form-group {
    margin-bottom: var(--space-lg);
}

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

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    background: var(--surface);
    color: var(--text);
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 31, 63, 0.1);
}

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

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
}

.form-check input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.form-check label {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
    margin: 0;
    cursor: pointer;
}

.form-check a {
    color: var(--primary);
    text-decoration: underline;
}

/* ===== Modal ===== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--surface);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: fadeInUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--bg);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.modal-close svg {
    width: 20px;
    height: 20px;
    color: var(--text);
}

.modal-close:hover {
    background: var(--border);
    transform: rotate(90deg);
}

/* ===== Notification ===== */
.notification {
    position: fixed;
    top: calc(var(--header-height) + var(--space-md));
    right: var(--space-md);
    background: var(--primary);
    color: white;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 3000;
    max-width: 360px;
    font-size: 0.95rem;
    font-weight: 500;
    animation: fadeInUp 0.4s ease;
    cursor: pointer;
}

.notification.error {
    background: #dc2626;
}

/* ===== Gallery ===== */
.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--border);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition-base);
    font-family: inherit;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition-base);
}

.gallery-item.hidden {
    display: none;
}

.gallery-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-base);
    position: relative;
    background-size: cover;
    background-position: center;
}

.gallery-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 60%);
    z-index: 1;
}

.gallery-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-base);
    z-index: 1;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-img::after {
    opacity: 1;
}

.gallery-label {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 2;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    color: white;
    transform: translateY(100%);
    transition: var(--transition-base);
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay svg {
    width: 24px;
    height: 24px;
    margin-bottom: var(--space-xs);
}

/* ===== Price Cards ===== */
.price-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border);
    transition: var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.price-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.price-header {
    text-align: center;
    padding-bottom: var(--space-lg);
    border-bottom: 2px solid var(--border);
    margin-bottom: var(--space-lg);
}

.price-card.featured .price-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.price-header h3 {
    font-size: 1.35rem;
    margin-bottom: var(--space-sm);
    color: var(--text);
}

.price-card.featured .price-header h3 {
    color: white;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-from {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.price-card.featured .price-from {
    color: rgba(255, 255, 255, 0.8);
}

.price-amount strong {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--secondary);
    font-weight: 900;
    line-height: 1;
}

.price-unit {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.price-card.featured .price-unit {
    color: rgba(255, 255, 255, 0.8);
}

.price-features {
    margin-bottom: var(--space-xl);
    flex-grow: 1;
}

.price-features li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.price-card.featured .price-features li {
    border-bottom-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
}

.price-features li svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.price-card.featured .price-features li svg {
    color: var(--secondary);
}

.price-card .btn {
    width: 100%;
}

/* ===== Testimonials ===== */
.testimonial-card {
    background: var(--surface);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition-base);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: var(--space-md);
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    color: var(--secondary);
}

.testimonial-text {
    color: var(--text);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text);
    font-size: 0.95rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* ===== Accordions ===== */
.accordion {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.accordion-header {
    width: 100%;
    background: var(--surface);
    border: none;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
}

.accordion-header svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: var(--transition-base);
    flex-shrink: 0;
}

.accordion.active .accordion-header svg {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bg);
}

.accordion-body p {
    padding: 0 var(--space-lg) var(--space-lg);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== Tables ===== */
.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-2xl);
}

.price-table th,
.price-table td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.price-table th {
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.price-table td {
    font-size: 0.95rem;
    color: var(--text-light);
}

.price-table td strong {
    color: var(--text);
    font-weight: 700;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table tr:hover td {
    background: var(--bg-cream);
}

/* ===== Contact Info ===== */
.contact-info-card {
    background: var(--surface);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: fit-content;
}

.contact-info-card h3 {
    font-size: 1.35rem;
    margin-bottom: var(--space-sm);
}

.contact-info-card > p {
    margin-bottom: var(--space-xl);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.contact-info-item .icon {
    width: 44px;
    height: 44px;
    background: rgba(249, 115, 22, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item .icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.contact-info-item strong {
    display: block;
    color: var(--text);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.contact-info-item a,
.contact-info-item span {
    color: var(--text-light);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.contact-info-item a:hover {
    color: var(--primary);
}

/* ===== Map ===== */
.map-section {
    width: 100%;
}

.map-section iframe {
    width: 100%;
    height: 350px;
    border: 0;
    display: block;
    filter: grayscale(20%) contrast(1.05);
}

/* ===== Service Detail ===== */
.service-detail-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.service-detail-icon {
    width: 72px;
    height: 72px;
    background: rgba(249, 115, 22, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.service-detail-icon svg,
.service-detail-icon img {
    width: 36px;
    height: 36px;
    color: var(--primary);
    transition: var(--transition-base);
}

.service-detail-card:hover .service-detail-icon {
    background: var(--secondary);
}

.service-detail-card:hover .service-detail-icon svg,
.service-detail-card:hover .service-detail-icon img {
    color: white;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.service-detail-content p {
    margin-bottom: var(--space-md);
}

.service-detail-content .btn {
    margin-top: var(--space-lg);
}

/* ===== Team ===== */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.team-card {
    text-align: center;
}

.team-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.team-card span {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== About Page Specifics ===== */
.about-story {
    background: var(--bg-white);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-story-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-story-content p {
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.value-card {
    background: var(--surface);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    text-align: center;
}

.value-card svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
    margin: 0 auto var(--space-md);
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.value-card p {
    font-size: 0.95rem;
}

/* ===== Awards ===== */
.awards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.award-card {
    background: var(--surface);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    border: 1px solid var(--border);
}

.award-card svg {
    width: 40px;
    height: 40px;
    color: var(--secondary);
    flex-shrink: 0;
}

.award-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.award-card p {
    font-size: 0.9rem;
}
