/* ========================================
   MODERN PAGES STYLES (About, Contact)
   ======================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(233, 30, 99, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: #ffffff;
    margin: 0 0 16px;
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

.page-header .subtitle {
    color: #e91e63;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: #999;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #e91e63;
}

.breadcrumb span {
    color: #666;
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid #e91e63;
    border-radius: 12px;
    z-index: -1;
}

.about-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.about-feature {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.about-feature i {
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 16px;
}

.about-feature h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.about-feature p {
    font-size: 0.85rem;
    color: #666;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 48px;
}

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

.team-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.team-member p {
    font-size: 0.85rem;
    color: #e91e63;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* ========================================
   CONTACT PAGE - MODERN DESIGN
   ======================================== */

/* Contact Page Layout */
.contact-page {
    padding-bottom: 0;
}

/* Contact Header - Enhanced */
.contact-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 50%, #1a1a1a 100%);
    padding: 90px 0 70px;
}

.contact-header::before {
    background:
        radial-gradient(circle at 20% 40%, rgba(233, 30, 99, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(255, 64, 129, 0.08) 0%, transparent 50%);
}

/* ========================================
   CONTACT INFO CARDS
   ======================================== */

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: -50px 0 60px;
    position: relative;
    z-index: 2;
}

.info-card {
    background: #ffffff;
    padding: 36px 24px 28px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e91e63, #ff4081);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.08), rgba(255, 64, 129, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.info-card:hover .info-icon {
    background: linear-gradient(135deg, #e91e63, #ff4081);
    transform: scale(1.05);
}

.info-icon i {
    font-size: 1.5rem;
    color: #e91e63;
    transition: color 0.4s ease;
}

.info-card:hover .info-icon i {
    color: #ffffff;
}

.info-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 6px;
}

.info-card p:last-of-type {
    margin-bottom: 16px;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #e91e63;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.info-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.info-link:hover {
    color: #d81b60;
    gap: 10px;
}

.info-link:hover i {
    transform: translateX(3px);
}

/* ========================================
   CONTACT FORM & MAP SECTION
   ======================================== */

.contact-main-section {
    padding: 0 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: #ffffff;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
}

.contact-form-wrapper > h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-form-wrapper > p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Form Elements */
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

.contact-form .form-group {
    margin-bottom: 24px;
    position: relative;
}

.contact-form .form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* Form Controls - Inputs, Select, Textarea */
.contact-form .form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 0.92rem;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background: #fafafa;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.contact-form .form-control::placeholder {
    color: #b0b0b0;
    font-weight: 400;
}

.contact-form .form-control:hover {
    border-color: #d0d0d0;
    background: #ffffff;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #e91e63;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.08);
}

/* Select Styling */
.contact-form select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.contact-form select.form-control:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%23e91e63' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Textarea */
.contact-form textarea.form-control {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

/* Error States */
.contact-form .form-group.has-error .form-control {
    border-color: #f44336;
    background: #fff5f5;
    box-shadow: 0 0 0 4px rgba(244, 67, 54, 0.08);
}

.contact-form .form-group.has-error label {
    color: #f44336;
}

.contact-form .error-message {
    font-size: 0.78rem;
    color: #f44336;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    animation: errorShake 0.4s ease;
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Checkbox Group */
.checkbox-group {
    margin-bottom: 16px !important;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 2px solid #d0d0d0;
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked {
    background: #e91e63;
    border-color: #e91e63;
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
}

.checkbox-label input[type="checkbox"]:focus {
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.15);
}

.checkbox-label span {
    font-size: 0.83rem;
    color: #666;
}

/* reCAPTCHA Placeholder */
.form-recaptcha {
    margin-bottom: 24px;
}

.recaptcha-placeholder {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #fafafa;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 0.88rem;
    color: #888;
    transition: all 0.3s ease;
}

.recaptcha-placeholder:hover {
    border-color: #d0d0d0;
}

.recaptcha-placeholder i {
    font-size: 1.3rem;
    color: #999;
}

/* Submit Button */
.contact-form .btn-primary {
    width: 100%;
    padding: 16px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #e91e63, #d81b60);
    border: none;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(233, 30, 99, 0.35);
    background: linear-gradient(135deg, #d81b60, #c2185b);
}

.contact-form .btn-primary i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.contact-form .btn-primary:hover i {
    transform: translateX(3px);
}

/* ========================================
   CONTACT MAP SECTION
   ======================================== */

.contact-map > h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
    position: relative;
    background: #f0f0f0;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    display: block;
    border: none;
}

.map-container.loaded {
    background: transparent;
}

/* Map Details - Çalışma Saatleri */
.map-details {
    background: #ffffff;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.map-details h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-details h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #e91e63, #ff4081);
    border-radius: 2px;
}

.hours-list {
    margin-bottom: 20px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item span:first-child {
    color: #555;
    font-weight: 500;
}

.hours-item span:last-child {
    color: #1a1a1a;
    font-weight: 600;
}

.hours-item.closed span:last-child {
    color: #f44336;
    font-weight: 600;
}

.hours-item.open {
    background: rgba(76, 175, 80, 0.05);
    padding: 12px 10px;
    border-radius: 8px;
    margin: 0 -10px;
}

.hours-item.open span:last-child {
    color: #4caf50;
}

.hours-item.open::after {
    content: '● Şu an açık';
    font-size: 0.72rem;
    color: #4caf50;
    font-weight: 600;
    margin-left: 8px;
}

.map-directions {
    margin-top: 20px;
}

.map-directions .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
    font-weight: 600;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.contact-faq {
    padding: 80px 0;
    border-top: 1px solid #f0f0f0;
}

.contact-faq .section-header {
    margin-bottom: 48px;
}

.contact-faq .section-header.centered {
    text-align: center;
}

.section-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e91e63;
    margin-bottom: 10px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #e91e63, #ff4081);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: top;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3 i {
    color: #e91e63;
    font-size: 1.1rem;
    width: 20px;
}

.faq-item p {
    font-size: 0.88rem;
    color: #777;
    line-height: 1.7;
    margin-bottom: 16px;
}

.faq-item a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #e91e63;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-item a:hover {
    color: #d81b60;
    gap: 10px;
}

.faq-item a i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.faq-item a:hover i {
    transform: translateX(3px);
}

/* ========================================
   SOCIAL LINKS SECTION
   ======================================== */

.contact-social {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #f0f0f0;
}

.contact-social .section-header {
    margin-bottom: 48px;
}

.contact-social .section-header.centered {
    text-align: center;
}

.contact-social .section-subtitle {
    display: block;
    color: #888;
    font-size: 0.9rem;
    max-width: 500px;
    margin: 12px auto 0;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.social-card {
    background: #fff;
    padding: 36px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.social-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.social-card:hover::after {
    transform: scaleX(1);
}

.social-card i {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 14px;
    transition: all 0.4s ease;
}

.social-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.social-card p {
    font-size: 0.82rem;
    color: #888;
    margin-bottom: 4px;
}

.social-card span {
    font-size: 0.78rem;
    color: #b0b0b0;
    font-weight: 500;
}

/* Social Card Platform Colors */
.social-card.instagram::after {
    background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-card.instagram:hover i {
    color: #E4405F;
}

.social-card.facebook::after {
    background: #1877F2;
}

.social-card.facebook:hover i {
    color: #1877F2;
}

.social-card.pinterest::after {
    background: #BD081C;
}

.social-card.pinterest:hover i {
    color: #BD081C;
}

.social-card.tiktok::after {
    background: linear-gradient(90deg, #69C9D0, #000000, #EE1D52);
}

.social-card.tiktok:hover i {
    color: #000000;
}

/* ========================================
   MAP SECTION (Standalone)
   ======================================== */

.map-section {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.map-section iframe {
    width: 100%;
    height: 100%;
}

/* ========================================
   NOTIFICATION TOAST (Contact page)
   ======================================== */

.notification-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: toastSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.notification-toast.success {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: #ffffff;
}

.notification-toast.error {
    background: linear-gradient(135deg, #f44336, #ef5350);
    color: #ffffff;
}

.notification-toast.info {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: #ffffff;
}

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

/* ========================================
   RESPONSIVE - TABLET (992px)
   ======================================== */

@media (max-width: 992px) {
    /* About */
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact */
    .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -40px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-wrapper {
        padding: 36px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (768px)
   ======================================== */

@media (max-width: 768px) {
    .page-header {
        padding: 70px 0 50px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .about-section,
    .contact-section,
    .team-section,
    .gallery-section {
        padding: 50px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: -30px;
        margin-bottom: 40px;
    }

    .info-card {
        padding: 28px 20px 24px;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }

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

    .contact-form-wrapper > h2 {
        font-size: 1.6rem;
    }

    .contact-map > h2 {
        font-size: 1.5rem;
    }

    .map-container iframe {
        height: 280px;
    }

    /* FAQ */
    .contact-faq {
        padding: 50px 0;
    }

    .faq-item {
        padding: 24px;
    }

    /* Social */
    .contact-social {
        padding: 50px 0;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .social-card {
        padding: 28px 16px;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (480px)
   ======================================== */

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0 40px;
    }

    .page-header h1 {
        font-size: 1.7rem;
    }

    .contact-header {
        padding: 70px 0 50px;
    }

    .contact-info-cards {
        margin-top: -25px;
        gap: 12px;
    }

    .info-icon {
        width: 52px;
        height: 52px;
    }

    .info-icon i {
        font-size: 1.2rem;
    }

    .contact-form-wrapper {
        padding: 24px 16px;
        border-radius: 14px;
    }

    .contact-form .form-control {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .social-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .social-card {
        padding: 24px 14px;
    }

    .social-card i {
        font-size: 1.8rem;
    }

    .social-card h3 {
        font-size: 0.9rem;
    }

    .faq-item {
        padding: 20px 16px;
    }

    .faq-item h3 {
        font-size: 0.92rem;
    }

    .map-details {
        padding: 20px 16px;
    }
}
