/* contact us page */
.contact-page{
    min-height: 100vh;
    padding-top:120px;
    padding-bottom:30px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container{
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 15px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.25);
}

.contact-title{
    text-align: center;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-subtitle{
    text-align: center;
    color: gray;
    margin-bottom: 25px;
}

.form-group{
    margin-bottom: 15px;
}

.form-group label{
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea{
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
    border-color: #ff385c;
}

.contact-btn{
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 30px;
    background-color: #ff385c;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-btn:hover{
    background-color: #e03150;
}

@media(max-width:768px){

    .contact-container{
        padding: 25px;
    }

}

/* privacy policy page */

.privacy-page{
    /* padding: 50px 15px; */
    padding-top:120px;
    padding-bottom:50px;
}

.privacy-header{
    text-align: center;
    margin-bottom: 40px;
}

.privacy-header h1{
    font-weight: 600;
    margin-bottom: 10px;
}

.privacy-header p{
    color: gray;
}

.privacy-container{
    max-width: 900px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.policy-card{
    padding: 25px;
    border-radius: 12px;
    background-color: var(--card-bg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
}

.policy-card:hover{
    transform: translateY(-3px);
}

.policy-card h3{
    margin-bottom: 10px;
    font-size: 18px;
}

.policy-card p{
    line-height: 1.6;
}

:root{
    --card-bg: #ffffff;
}

[data-theme="dark"]{
    --card-bg: #1e1e1e;
}

@media(max-width:768px){

    .privacy-header h1{
        font-size: 28px;
    }

    .policy-card{
        padding: 20px;
    }
}

/* Terms of service PAGE */

.terms-page{
    /* padding: 50px 15px; */
    padding-top:120px;
}

.terms-header{
    text-align: center;
    margin-bottom: 40px;
}

.terms-header h1{
    font-weight: 600;
    margin-bottom: 10px;
}

.terms-header p{
    color: gray;
}

.terms-container{
    max-width: 900px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.terms-card{
    padding: 25px;
    border-radius: 12px;
    background-color: var(--card-bg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
}

.terms-card:hover{
    transform: translateY(-3px);
}

.terms-card h3{
    margin-bottom: 10px;
    font-size: 18px;
}

.terms-card p{
    line-height: 1.6;
}

:root{
    --card-bg: #ffffff;
}

[data-theme="dark"]{
    --card-bg: #1e1e1e;
}

@media(max-width:768px){

    .terms-header h1{
        font-size: 28px;
    }

    .terms-card{
        padding: 20px;
    }

}

.theme-dark .privacy-page,
.theme-dark .terms-page {
    background-color: #121212;
    min-height: 100vh;
    padding-top:120px;
}

.theme-dark .privacy-header h1,
.theme-dark .terms-header h1 {
    color: #ffffff;
    text-align: center;
}

.theme-dark .privacy-header p,
.theme-dark .terms-header p {
    color: #b0b0b0;
    text-align: center;
    margin-bottom: 30px;
}

.theme-dark .privacy-container,
.theme-dark .terms-container {
    max-width: 900px;
    margin: auto;
}

.theme-dark .policy-card,
.theme-dark .terms-card {
    background-color: #1c1c1c;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.theme-dark .policy-card:hover,
.theme-dark .terms-card:hover {
    background-color: #242424;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.theme-dark .policy-card:hover,
.theme-dark .terms-card:hover {
    background-color: #242424;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.theme-dark .policy-card h3,
.theme-dark .terms-card h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.theme-dark .policy-card p,
.theme-dark .terms-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* theme dark contact us form */
.theme-dark .contact-page {
    background-color: #121212;
    padding-top:120px;
}

.theme-dark .contact-container {
    background-color: #1c1c1c;
    border: 1px solid #2a2a2a;
    opacity:0.96;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.theme-dark .contact-title {
    color: #ffffff;
    text-align: center;
}

.theme-dark .contact-subtitle {
    color: #b0b0b0;
    text-align: center;
    margin-bottom: 20px;
}

.theme-dark .contact-container input,
.theme-dark .contact-container textarea,
.theme-dark .contact-container select {
    width: 100%;
    background-color: #242424;
    border: 1px solid #3a3a3a;
    color: #ffffff;
    border-radius: 10px;
    padding: 10px;
    margin-top: 5px;
}

.theme-dark .contact-btn {
    background-color: #ffffff;
    color: #121212;
    border-radius: 30px;
    padding: 10px 20px;
    width: 100%;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.theme-dark .contact-btn:hover {
    background-color: #e6e6e6;
    transform: translateY(-2px);
}

.theme-dark .form-group label{
    color: #b0b0b0;
}

    @media (max-width: 576px) {

        .privacy-page {
          padding: 100px 15px 40px;
        }
      
        .privacy-header h1 {
          font-size: 24px;
        }
      
        .privacy-header p {
          font-size: 14px;
        }
      
        .privacy-container {
          max-width: 100%;
          gap: 15px;
        }
      
        .policy-card {
          padding: 18px;
          border-radius: 10px;
        }
      
        .policy-card h3 {
          font-size: 16px;
        }
      
        .policy-card p {
          font-size: 14px;
        }
        
            .terms-page {
              padding: 100px 15px 40px;
            }
          
            .terms-header h1 {
              font-size: 24px;
            }
          
            .terms-header p {
              font-size: 14px;
            }
          
            .terms-container {
              max-width: 100%;
              gap: 15px;
            }
          
            .terms-card {
              padding: 18px;
              border-radius: 10px;
            }
          
            .terms-card h3 {
              font-size: 16px;
            }
          
            .terms-card p {
              font-size: 14px;
            }
          
          }

