/* ===============================
   CONTACT PAGE STYLES - MODERN
   =============================== */

:root {
    --primary-color: #00B4D8;
    --primary-light: #90E0EF;
    --primary-dark: #0077B6;
    --secondary-color: #00D9FF;
    --accent-color: #FF6B6B;
    --text-color: #1a1a1a;
    --text-light: #666666;
    --text-lighter: #999999;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-lighter: #f0f2f5;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 180, 216, 0.12);
    --shadow-lg: 0 12px 40px rgba(0, 180, 216, 0.15);
    --shadow-hover: 0 16px 50px rgba(0, 180, 216, 0.2);
    --gradient-primary: linear-gradient(135deg, #00B4D8, #0077B6);
    --gradient-accent: linear-gradient(135deg, #FF6B6B, #FF8C8C);
}

/* ===============================
   HERO SECTION - MODERN
   =============================== */

.hero-section {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 50%, #e0f7ff 100%);
    padding: 120px 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary-dark);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
    border: 1.5px solid var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: slideDownFadeIn 0.8s ease 0.1s both;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 62px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.15;
    animation: slideDownFadeIn 0.8s ease 0.2s both;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.7;
    animation: slideDownFadeIn 0.8s ease 0.3s both;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideDownFadeIn 0.8s ease 0.4s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.cta-button:first-child {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.cta-button:first-child:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.cta-button.secondary {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--primary-light);
}

.cta-button.secondary:hover {
    border-color: var(--primary-color);
    background: var(--white);
    transform: translateY(-3px);
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.12;
    border-radius: 50%;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background-color: var(--primary-color);
    top: -80px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background-color: var(--primary-light);
    bottom: -50px;
    left: -80px;
    animation: float 10s ease-in-out infinite 1s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background-color: var(--secondary-color);
    top: 50%;
    left: 10%;
    animation: float 12s ease-in-out infinite 2s;
}

.shape-4 {
    width: 200px;
    height: 200px;
    background-color: var(--accent-color);
    bottom: 20%;
    right: 15%;
    animation: float 9s ease-in-out infinite 0.5s;
}

/* ===============================
   QUICK CONTACT CARDS
   =============================== */

.quick-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.quick-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 180, 216, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.quick-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.quick-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.quick-card:hover .quick-icon {
    transform: scale(1.1);
}

.quick-card h3 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-detail {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.card-desc {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* ===============================
   CONTACT SECTION - MODERN
   =============================== */

.contact-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--text-color);
    margin-bottom: 10px;
    font-weight: 800;
}

.section-header p {
    font-size: 15px;
    color: var(--text-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    animation: fadeIn 0.8s ease 0.2s both;
}

/* ===============================
   CONTACT CARDS
   =============================== */

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.contact-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid rgba(0, 180, 216, 0.1);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.card-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.contact-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.badge-new {
    display: inline-block;
    background: rgba(255, 107, 107, 0.1);
    color: var(--accent-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card h3 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-card > p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    width: fit-content;
}

.contact-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-dark);
}

.contact-link:hover i {
    transform: translateX(3px);
}

.address-text {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--bg-lighter);
}

.hours-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.hours-list .day {
    font-weight: 600;
    color: var(--text-color);
}

.hours-list .emergency-24 {
    background: rgba(255, 107, 107, 0.05);
    padding: 8px 12px;
    border-radius: 8px;
    border: none !important;
}

.hours-list .emergency-24 span {
    color: var(--accent-color);
}

/* ===============================
   CONTACT FORM - MODERN
   =============================== */

.contact-form-wrapper {
    background: var(--white);
    padding: 45px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 180, 216, 0.1);
    animation: fadeInRight 0.8s ease 0.2s both;
}

.form-header {
    margin-bottom: 35px;
}

.form-header h2 {
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 8px;
    font-weight: 800;
}

.form-header p {
    font-size: 14px;
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 16px;
    border: 1.5px solid var(--bg-lighter);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    background-color: var(--white);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-lighter);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
    background-color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
}

.char-count {
    font-size: 12px;
    color: var(--text-lighter);
    align-self: flex-end;
}

.form-group.checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin: 5px 0;
}

.form-group.checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin: 0;
    padding: 0;
    margin-top: 2px;
    border: 1.5px solid var(--bg-lighter);
    border-radius: 6px;
    flex-shrink: 0;
    accent-color: var(--primary-color);
}

.form-group.checkbox label {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    cursor: pointer;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
    line-height: 1.6;
}

.submit-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 14px 40px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: var(--shadow-md);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.submit-btn:active {
    transform: translateY(0);
}

/* ===============================
   MAP SECTION - MODERN
   =============================== */

.map-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
    position: relative;
}

.map-section h2 {
    font-size: 40px;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 800;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.8s ease 0.2s both;
    border: 1px solid rgba(0, 180, 216, 0.1);
}

.map-container iframe {
    display: block;
}

/* ===============================
   FAQ SECTION - MODERN
   =============================== */

.faq-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
    position: relative;
}

.faq-section h2 {
    font-size: 40px;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    animation: fadeIn 0.8s ease 0.2s both;
}

.faq-item {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid rgba(0, 180, 216, 0.1);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.faq-item:hover::before {
    transform: scaleX(1);
}

.faq-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.faq-item h3 {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.faq-item h3 i {
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* ===============================
   CTA SECTION - MODERN
   =============================== */

.cta-section {
    padding: 100px 20px;
    background: var(--gradient-primary);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ===============================
   ANIMATIONS
   =============================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-25px);
    }
}

/* ===============================
   RESPONSIVE DESIGN - MODERN
   =============================== */

@media (max-width: 1200px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 48px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 20px;
        min-height: 400px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .contact-section {
        padding: 70px 20px;
    }

    .contact-wrapper {
        gap: 40px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .contact-card {
        padding: 25px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .form-header h2 {
        font-size: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .map-section {
        padding: 70px 20px;
    }

    .map-section h2 {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .map-container iframe {
        height: 350px !important;
    }

    .faq-section {
        padding: 70px 20px;
    }

    .faq-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .faq-item {
        padding: 25px;
    }

    .faq-item h3 {
        font-size: 15px;
    }

    .cta-section {
        padding: 70px 20px;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .cta-section p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .quick-contact {
        grid-template-columns: 1fr;
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 15px;
        min-height: 300px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-badge {
        font-size: 11px;
    }

    .hero-cta {
        gap: 10px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 13px;
    }

    .shape-1 {
        width: 200px;
        height: 200px;
    }

    .shape-2 {
        width: 120px;
        height: 120px;
    }

    .shape-3 {
        width: 150px;
        height: 150px;
    }

    .shape-4 {
        width: 100px;
        height: 100px;
    }

    .contact-section {
        padding: 50px 15px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .contact-wrapper {
        gap: 30px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-card {
        padding: 20px;
    }

    .card-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .card-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .form-header h2 {
        font-size: 20px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 11px 14px;
        font-size: 13px;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .char-count {
        font-size: 11px;
    }

    .submit-btn {
        padding: 12px 28px;
        font-size: 13px;
    }

    .map-section {
        padding: 50px 15px;
    }

    .map-section h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .map-container iframe {
        height: 280px !important;
    }

    .faq-section {
        padding: 50px 15px;
    }

    .faq-section h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .faq-grid {
        gap: 15px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-item h3 {
        font-size: 14px;
        gap: 10px;
    }

    .faq-item p {
        font-size: 13px;
    }

    .cta-section {
        padding: 60px 15px;
    }

    .cta-section h2 {
        font-size: 26px;
    }

    .cta-section p {
        font-size: 14px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .quick-contact {
        gap: 15px;
        margin-bottom: 40px;
    }

    .quick-card {
        padding: 20px;
    }

    .quick-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .quick-card h3 {
        font-size: 15px;
    }

    .contact-detail {
        font-size: 14px;
    }

    .card-desc {
        font-size: 12px;
    }
}
