/*!
Theme Name: ptp
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: ptp
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

ptp is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: hsl(248, 31%, 14%);
    --pink: hsl(336, 78%, 67%);
    --white: hsl(0, 0%, 100%);
    --gray-light: rgba(0, 0, 0, 0.05);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Instrument Serif', serif;
    background-color: var(--white);
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

.italic {
    font-style: italic;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navigation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1.5rem 0 3rem;
}
.page-id-12 .navigation {
    padding: 1rem 0 1rem;
    background: var(--navy);
}.page-id-12 main#primary {
    max-width: 56rem;
    margin: 200px auto 0;
    padding: 0 1rem;
}.page-id-12 h1.entry-title {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 2rem;
    font-weight: normal;
}.entry-content h2{
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: normal;
}.entry-content section {
    margin-bottom: 1rem;
}ul.list-disc.pl-6.space-y-2 {
    padding-left: 1.5rem;
}.entry-content section a.text-pink.hover\:underline {
    color: #ec699e;
}.page-id-12 p.mt-2 {
    margin-top: .5rem;
}
.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    max-width: 32rem;
}

.logo {
    height: 7rem;
}

@media (min-width: 768px) {
    .logo {
        height: 8rem;
    }
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.25rem;
    font-family: 'Instrument Serif', serif;
    cursor: pointer;
    transition: color 0.3s;
    text-transform: capitalize;
}

.nav-link:hover {
    color: var(--pink);
}

/* Hero Section */
.hero {
    background-color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11rem 1rem 3rem;
    min-height: 42vh;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: 10rem 1rem 5rem;
    }
}

.hero-background-icon {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 0;
    display: none;
}

@media (min-width: 1024px) {
    .hero-background-icon {
        display: block;
    }
}

.hero-background-icon img {
    position: absolute;
    height: 180%;
    width: auto;
    top: -50%;
    right: 10%;
    object-fit: contain;
    opacity: 0.3;
    animation: fadeIn 0.8s ease-in;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}
.hero-text {
    max-width: 42rem;
    margin-top: 0;
}.hero-content .btn-primary:hover {
    background-color: #ec699ee6;
}

.hero-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeIn 0.8s ease-in;
    font-weight: normal;
    line-height: 1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 2rem;
    animation: fadeIn 0.8s ease-in;
    line-height: normal;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}
@media (min-width: 1420px) {
    .navigation .container {
        padding: 0;
    }
}
/* Buttons */
.btn-primary {
    background-color: var(--pink);
    color: var(--white);
    font-size: 1.125rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Instrument Serif', serif;
    animation: fadeIn 0.8s ease-in;
}

.btn-primary:hover {
    background-color: hsl(336, 78%, 60%);
}

.btn-submit {
    width: 100%;
    background-color: var(--pink);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Instrument Serif', serif;
}

.btn-submit:hover {
    background-color: hsl(336, 78%, 60%);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* About Section */
.about-section {
    padding: 3rem 1rem;
    background-color: var(--gray-light);
}

@media (min-width: 768px) {
    .about-section {
        padding: 5rem 1rem;
    }
}

/* Grid Layout */
.grid-2-col {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .grid-2-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-weight: normal;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-title-white {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title-white {
        font-size: 3rem;
    }
}

.text-lg {
    font-size: 1.125rem;
    color: var(--navy);
}

.text-lg-white {
    font-size: 1.125rem;
    color: var(--white);
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.text-center {
    text-align: center;
    font-weight: normal;
}

/* Images */
.section-image {
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    width: 100%;
    height: 405px;
    object-fit: cover;
}

/* Experience Banner */
.experience-banner {
    background-color: var(--pink);
    padding: 2rem 1rem;
}

.experience-text {
    font-size: 1.875rem;
    color: var(--white);
    font-style: italic;
    font-weight: normal;
}

@media (min-width: 768px) {
    .experience-text {
        font-size: 2.25rem;
    }
}

/* Team Section */
.team-section {
    background-color: var(--navy);
    padding: 5rem 1rem;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 56rem;
    margin: 0 auto;
    align-items: center;
}

@media (min-width: 768px) {
    .team-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

.team-member {
    width: 100%;
    max-width: 28rem;
    display: flex;
    flex-direction: column;    
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center 10%;
    border-radius: 0.5rem 0.5rem 0 0;
}

.team-card {
    padding: 2rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.team-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.team-name {
    font-size: 1.875rem;
    color: var(--navy);
    /* margin-bottom: 0.5rem; */
    font-weight: normal;
}

@media (min-width: 768px) {
    .team-name {
        font-size: 2.25rem;
    }
}

.team-title {
    color: var(--pink);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.team-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(24, 21, 38, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--pink);
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

.contact-link span {
    font-size: 1.125rem;
}

/* Why Us Section */
.why-us-section {
    background-color: var(--navy);
    padding: 2.5rem 1rem 5rem;
}

@media (min-width: 768px) {
    .why-us-section {
        padding: 5rem 1rem;
    }
}

.order-1-md {
    order: 1;
}

.order-2-md {
    order: 2;
}

@media (min-width: 768px) {
    .order-1-md {
        order: 2;
    }
    
    .order-2-md {
        order: 1;
    }
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
}

.benefit-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    background-color: var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.check-icon {
    width: 1rem;
    height: 1rem;
    color: var(--white);
}

.benefit-text {
    color: var(--white);
    font-size: 1.125rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--pink);
    padding: 5rem 1rem;
}

.testimonials-container {
    max-width: 56rem;
    margin: 0 auto;
    position: relative;
    min-height: 307px;
}

.testimonials-slider {
    width: 100%;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    width: 100%;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

.testimonial-card {
    border: 2px solid rgba(24, 21, 38, 0.1);
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .testimonial-card {
        padding: 3rem;
    }
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.75;
}

.testimonial-text::before {
    content: '"';
}#testimonials h2.section-title-white.text-center.mb-12 {
    line-height: 1;
}

.testimonial-text::after {
    content: '"';
}

.testimonial-author {
    color: var(--navy);
    font-weight: 600;
    text-align: right;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    color: var(--navy);
    border: 1px solid rgba(24, 21, 38, 0.2);
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s;
    z-index: 10;
}.carousel-btn  svg{
    width: 1rem !important;
    height: 1rem !important;
}

.carousel-btn:hover {
    background-color: #ec699e;
    color: var(--white);
    border-color: #fff;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

@media (min-width: 768px) {
    .carousel-prev {
        left: -3rem;
    }
    
    .carousel-next {
        right: -3rem;
    }
}

/* Contact Section */
.contact-section {
    background-color: var(--navy);
    padding: 5rem 1rem;
}
#contact h2.section-title-white.text-center.mb-4 {
    margin-bottom: 0;
}
.contact-container {
    max-width: 42rem;
    margin: 0 auto;
}

.contact-subtitle {
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
}

.contact-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    max-width: 36rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-card {
        padding: 3rem;
    }
}


#gform_1 input[type="text"], #gform_1 input[type="email"], #gform_1 input[type="tel"] , #gform_1 textarea {
    background-color: var(--white) !important;
    border: 1px solid rgba(24, 21, 38, 0.2) !important;
    border-radius: 0.375rem !important;
    padding: 1rem 1rem !important;
    font-family: 'Instrument Serif', serif !important;
    transition: border-color 0.3s !important;
    display: block;
    height: 40px;
    font-size: .875rem;
    line-height: 1.25rem;
}
.gform-theme--framework ::placeholder {
    color: rgb(117, 117, 117) !important;
    text-transform: capitalize;
}
#gform_1 input:focus, #gform_1 textarea:focus {
    outline: none !important;
    border-color: var(--pink) !important;
}.gform-theme--foundation .gform_fields {
    row-gap: 24px !important;
}
input#gform_submit_button_1 {
    width: 100%;
    background-color: var(--pink);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Instrument Serif', serif;
    text-transform: capitalize;
}div#gform_confirmation_message_1 {
    text-align: center;
}label.gform-field-label.gform-field-label--type-inline.gfield_consent_label {
    font-size: 16px;
    font-size: 1.125rem;
}input#input_1_6_1 {
    border-radius: 6px;
}input#input_1_6_1:checked {
    background: #000;
    border-color: #000;
}input#input_1_6_1::before {
    color: #fff !important;
}#gform_ajax_spinner_1{
    text-align: center !important;
    justify-content: center !important;
   /* // transform: translate(-50%,-50%) !important; */
}.gform-theme--framework input[type=checkbox]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::before {
    line-height: normal !important;
}
/* Footer */
.footer {
    background-color: var(--white);
    padding: 2rem 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
    }
}

.footer-logo {
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .footer-logo {
        margin-bottom: 0;
    }
}

.logo-footer {
    height: 7rem;
}

@media (min-width: 768px) {
    .logo-footer {
        height: 8rem;
    }
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--navy);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-links {
        font-size: 1.125rem;
    }
}

.footer-text {
    color: var(--navy);
}

.footer-divider {
    display: none;
}

@media (min-width: 768px) {
    .footer-divider {
        display: inline;
    }
}

.footer-link {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--pink);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-in;
}

/* Toast Notification (simple version) */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--navy);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: slideInUp 0.3s ease-out;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.toast-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.toast-description {
    font-size: 0.875rem;
}

/* Base */
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hide menu on mobile */
.nav-links {
    display: flex;
    gap: 30px;
}
#navToggle{
    display: none;
}
@media (max-width: 768px) {
    .container {
        padding: 0 .5rem;
    }.page-id-12 main#primary {
        padding: 0 1.5rem;
    }#navToggle{
        display: flex;
    }nav.navigation .container {
        padding: 0 1.5rem 0 1rem;
    }.nav-links {
        flex-direction: column;
        background: var(--navy);
        position: absolute;
        top: 140px;
        right: 0;
        width: 100%;
        padding: 0 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.35s ease;
        z-index: 9999;
        gap: 20px;
    }
    .nav-links.active {
        max-height: 500px; /* big enough for all menu items */
        opacity: 1;
        transform: translateY(0);
        padding: 20px;
    }
    /* Hamburger Button */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        width: 30px;
        height: 22px;
        justify-content: space-between;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }
    .nav-toggle .bar {
        width: 100%;
        height: 3px;
        background: #fff;
        transition: 0.3s ease;
    }
    /* Hamburger to X animation */
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }.footer-logo {
        margin-bottom: 0;
    }.carousel-next {
        right: -20px;
    }.carousel-prev {
        left: -20px;
    }.testimonials-section {
        padding: 48px 1rem 5rem;
    }.team-section {
        padding: 48px 1rem 5rem;
    }.why-us-section {
        padding: 0 1rem 5rem;
    }.contact-section {
        padding: 48px 1rem 5rem;
    }#why-us .mb-12 {
        margin-bottom: 1.5rem;
    }span.footer-text {
        flex-basis: 100%;
        text-align: center;
    }#contact iframe {
        transform: scale(0.8) !important;
        position: relative !important;
        left: -30px !important;
    }.gform-theme--framework .gform_validation_errors .gform_submission_error{
        flex-direction: row !important;
    }
}
