/* ============================================
   DATA DELETION POLICY PAGE - TECHORSES THEME
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #2563eb;
    --text-color: black;
    --white: #ffffff;
    --green: #006400;
    --orange: #ff5e0e;
    --bg-light: #eff3ef;
}

body {
    background-color: white;
}

/* ============================================
   NAVBAR STYLES (SAME AS INDEX)
   ============================================ */

.header {
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    width: auto;
    transform: scale(3.5);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    list-style: none;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: inline-block;
}

.nav-link:hover {
    color: #ff5e0e;
}

.nav-link.active {
    color: #ff5e0e;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff5e0e;
    animation: underlineGrow 0.3s ease-out;
}

@keyframes underlineGrow {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.btn-lets-talk {
    background-color: #ff5e0e;
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-lets-talk:hover {
    transform: translateY(-2px);
    background-color: white;
    color: #ff5e0e !important;
    border: 1px solid #ff5e0e;
    box-shadow: 0 5px 15px rgba(255, 94, 14, 0.2);
}

.services-dropdown {
    position: static;
}

.dropdown-icon {
    margin-left: 0.2rem;
    font-size: 0.65rem;
    transition: transform 0.3s ease;
    display: none;
}

.dropdown-container {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 115%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    z-index: 99;
    padding: 1.5rem 0;
    max-width: 1200px;
    width: fit-content;
}

.dropdown-content {
    display: flex;
    gap: 1.5rem;
    max-width: 1400px;
    width: 100%;
    padding: 0 2rem;
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.8rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
    background: rgba(0, 100, 0, 0.05);
    border: 1px solid rgba(0, 100, 0, 0.1);
}

.dropdown-item:hover {
    background: #e7fff2;
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 100, 0, 0.2);
}

.dropdown-item i {
    font-size: 1.5rem;
    color: #ff5e0e;
}

.dropdown-item span {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
}

.dropdown-item .second-line {
    display: block;
    font-weight: 500;
    color: #666;
    font-size: 0.85rem;
}

.products-dropdown .dropdown-item-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.3rem;
}

.products-dropdown .dropdown-item .second-line {
    display: inline;
    margin-left: 0.2rem;
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: #ff5e0e;
}

.logo-mobile {
    display: none;
}

.logo-desktop {
    display: inline;
}

.blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.blur-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   LET'S TALK MODAL
   ============================================ */

.lets-talk-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lets-talk-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.modal-container {
    position: relative;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2;
    transform: translateY(20px);
    transition: all 0.3s ease;
    padding: 2rem;
}

.lets-talk-modal.active .modal-container {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.modal-close-btn:hover {
    color: #ff5e0e;
}

.modal-content h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.modal-content p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-group textarea {
    resize: vertical;
    min-height: 95px;
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #666;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    pointer-events: none;
    background-color: #f9f9f9;
    padding: 0 0.5rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff5e0e;
    background-color: white;
}

.form-group input:focus+label,
.form-group textarea:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -0.6rem;
    left: 0.8rem;
    font-size: 0.8rem;
    color: #ff5e0e;
    background-color: white;
}

.submit-btn {
    background-color: #ff5e0e;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background-color: #e0550c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 94, 14, 0.3);
}

.btn-loader {
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-left: 10px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ============================================
   DATA DELETION POLICY PAGE STYLES
   ============================================ */

.deletion-page {
    background-color: var(--bg-light);
    min-height: calc(100vh - 500px);
}

.deletion-hero {
    background: linear-gradient(135deg, #006400 0%, #008000 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.deletion-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.deletion-hero p {
    font-size: 1rem;
    opacity: 0.9;
}

.deletion-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.deletion-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.deletion-content {
    padding: 3rem;
}

.deletion-section {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 2rem;
}

.deletion-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.deletion-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #006400;
    margin-bottom: 1.2rem;
    display: inline-block;
    position: relative;
}

.deletion-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ff5e0e;
    border-radius: 2px;
}

.deletion-section p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.deletion-section ul,
.deletion-section ol {
    margin: 1rem 0 1rem 1.8rem;
    color: #4b5563;
    line-height: 1.7;
}

.deletion-section li {
    margin-bottom: 0.5rem;
}

.deletion-section strong {
    color: #006400;
}

.deletion-section a {
    color: #006400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.deletion-section a:hover {
    color: #ff5e0e;
    text-decoration: underline;
}

.info-box {
    background: #f0fdf4;
    border-left: 4px solid #006400;
    padding: 1.2rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.info-box p {
    margin-bottom: 0.3rem;
}

.info-box i {
    color: #006400;
    margin-right: 8px;
}

.info-box.warning {
    background: #fef3c7;
    border-left-color: #f59e0b;
}

.info-box.warning i {
    color: #f59e0b;
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.desktop-social {
    display: flex;
}

.mobile-social {
    display: none;
}

.active-footer-link {
    color: #ff5e0e !important;
    font-weight: 600;
}

.footer-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.1s ease;
    display: block;
}

.footer-link:hover {
    color: #ff5e0e;
}

footer {
    background: #d5ded5;
    padding: 2rem 2rem 0;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.footer-column {
    flex: 1 1 auto;
    min-width: 90px;
    padding: 0rem;
}

.footer-logo-column {
    flex: 1 1 270px;
    min-width: 20px;
}

/* Specific adjustments for Explore and Services columns */
.footer-column:nth-child(2) {
    flex: 0 1 160px !important;
    min-width: 160px !important;
}

.footer-column:nth-child(3) {
    flex: 0 1 100px;
    min-width: 100px;
}

.footer-column:nth-child(4) {
    flex: 0 1 160px;
    min-width: 160px;
}

.footer-column:last-child {
    flex: 1 1 250px;
}

.footer-logo-column img {
    max-width: 120px;
    margin-bottom: -0.5rem;
    margin-top: -2rem;
    transform: scale(1.8);
    margin-left: 10%;
}

.footer-logo-column p {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.footer-logo-column button {
    background-color: #ff5e0e;
    color: white;
    padding: 0.7rem 1.5rem;
    border: 1px solid #ff5e0e;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    display: block;
    width: 100%;
    max-width: 200px;
}

.footer-logo-column button:hover {
    background-color: transparent;
    color: #ff5e0e;
}

.footer-column h3 {
    color: #ff5e0e;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-column li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column li a:hover {
    color: #ff5e0e;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-line {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.contact-line i {
    color: #ff5e0e;
    margin-right: 0.5rem;
    margin-top: 0.3rem;
    min-width: 20px;
}

.contact-line a,
.address-text {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.contact-line a:hover {
    color: #ff5e0e;
}

.footer-social-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    color: #ff5e0e;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ff5e0e;
    text-decoration: none;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    background-color: #ff5e0e;
    color: white;
}

.footer-copyright-section {
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-copyright {
    display: none;
}

.desktop-copyright {
    display: block;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--text-color);
}

#goToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #006400;
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0.9;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#goToTopBtn:hover {
    opacity: 1;
    transform: translateY(-3px);
    background-color: white;
    color: #006400;
}

#whatsappBtn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #006400;
    color: white;
    border: 2px solid #006400;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0.9;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

#whatsappBtn:hover {
    opacity: 1;
    transform: translateY(-3px);
    background-color: transparent;
    color: #25D366;
    border-color: #25D366;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 992px) {
    .dropdown-icon {
        display: inline-block !important;
    }

    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: inline;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 5rem;
        gap: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 80%;
        height: 80vh;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        overflow-y: auto;
        border-top-right-radius: 60px;
        border-bottom-right-radius: 60px;
        z-index: 99;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
        width: 100%;
    }

    .dropdown-container {
        position: static;
        display: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        width: 100%;
    }

    .dropdown-content {
        flex-direction: column;
        padding: 0;
        gap: 0;
    }

    .dropdown-item {
        padding: 0.8rem 0;
        border-bottom: 1px solid #eee;
        background: transparent;
        min-width: auto;
        width: 100%;
    }

    .services-dropdown.active .dropdown-container,
    .products-dropdown.active .dropdown-container {
        display: block;
        position: fixed;
        top: 50%;
        left: 70%;
        transform: translate(-50%, -50%);
        width: 50%;
        max-width: 250px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
        padding: 1rem;
        z-index: 100;
    }

    .mobile-none {
        display: none !important;
    }

    .mobile-social {
        display: flex !important;
        justify-content: center;
        width: 100%;
        margin-top: 0.5rem;
    }

    .footer-main-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-column {
        text-align: center;
        padding: 0;
        flex: 1 1 100% !important;
        min-width: 100%;
    }

    .footer-logo-column img {
        margin: -30px auto -10px;
        display: block;
    }

    .footer-logo-column p {
        text-align: center;
        padding: 0 15%;
    }

    .footer-social-wrapper {
        justify-content: center;
    }

    .contact-info {
        align-items: center;
    }

    .contact-line {
        justify-content: center;
        flex-wrap: wrap;
    }

    .desktop-copyright {
        display: none;
    }

    .mobile-copyright {
        display: block;
        margin-top: 1.5rem;
    }
}

@media (max-width: 768px) {
    .deletion-hero {
        padding: 2.5rem 1rem;
    }

    .deletion-hero h1 {
        font-size: 1.8rem;
    }

    .deletion-container {
        padding: 1.5rem;
    }

    .deletion-content {
        padding: 1.5rem;
    }

    .deletion-section h2 {
        font-size: 1.3rem;
    }

    .deletion-section p,
    .deletion-section li {
        font-size: 0.85rem;
    }

    .info-box {
        padding: 1rem;
    }

    footer {
        padding: 1.5rem 1rem 0;
    }

    .footer-logo-column p {
        padding: 0 10%;
    }

    .contact-info {
        padding: 0 10%;
    }
}

@media (max-width: 480px) {
    .deletion-hero h1 {
        font-size: 1.5rem;
    }

    .deletion-content {
        padding: 1rem;
    }

    .deletion-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .deletion-section h2 {
        font-size: 1.2rem;
    }

    .footer-logo-column p {
        padding: 0 5%;
    }

    .contact-info {
        padding: 0 5%;
    }

    .footer-socials a {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}