

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* NAVBAR - Improved */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.logo img {
    max-height: 45px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Menu - Clean and modern */
.navbar ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #1976D2;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar ul li a:hover,
.navbar ul li a.active {
    color: #1976D2;
    background: rgba(25, 118, 210, 0.05);
}

.navbar ul li a:hover::before,
.navbar ul li a.active::before {
    width: 80%;
}

/* Header buttons - Refined */
.header-buttons {
    display: flex;
    gap: 12px;
}

.header-buttons a {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.call-btn {
    background: transparent;
    color: #333;
    border-color: #e0e0e0;
}

.call-btn:hover {
    background: #f5f5f5;
    border-color: #1976D2;
    color: #1976D2;
}

.chat-btn {
    background: #1976D2;
    color: #fff;
}

.chat-btn:hover {
    background: #1565C0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

/* Dropdown - Improved vertical layout */
.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    min-width: 200px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown li {
    display: block;
    width: 100%;
}

.dropdown li a {
    color: #555 !important;
    padding: 12px 20px !important;
    border-radius: 0 !important;
    font-weight: 400 !important;
    border: none !important;
    box-shadow: none !important;
    display: block;
    transition: all 0.3s ease !important;
    background: transparent !important;
}

.dropdown li a::before {
    display: none !important;
}

.dropdown li a:hover {
    background: rgba(25, 118, 210, 0.05) !important;
    color: #1976D2 !important;
    padding-left: 25px !important;
}

/* Arrow rotation */
.services-arrow {
    transition: transform 0.3s ease;
    margin-left: 5px;
}

.navbar ul li:hover .services-arrow {
    transform: rotate(180deg);
}

/* Footer */
footer {
    background: #000000;
    color: #fff;
   
    padding: 40px 20px 10px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #1976d2 50%, transparent 100%);
}

footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(25, 118, 210, 0.05) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(1.1); }
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

/* ================= COMPANY INFO ================= */
.footer-company {
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.footer-logo {
    display: flex;
    margin-top: 30px;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-one {
    width: auto;
    height: 100px;
}

.footer-company p {
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 300;
}

/* Social Icons under company info */
.footer-social-icons {
    display: flex;
    gap: 12px;
    margin: 15px 0 25px;
}

.footer-social-icons .social-link {
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social-icons .social-link:hover {
    background: #1976d2;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(25, 118, 210, 0.3);
}

/* ================= NEWSLETTER ================= */
.newsletter {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.newsletter h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

.newsletter > p {
    font-size: 1rem;
    color: #d0d0d0;
    margin: 10px 0;
    line-height: 1.3;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    margin: 15px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 16px 15px;
    border: none;
    outline: none;
    background: white;
    color: #333;
    font-size: 1rem;
    
}

.newsletter-form input[type="email"]::placeholder {
    color: #bbb;
}

.newsletter-form button {
    padding: 16px 20px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #1565c0, #1976d2);
}

.newsletter-privacy {
    font-size: 0.9rem;
    color: #aaa;
    font-weight: 300;
}

/* Contact Info */
.contact-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #e0e0e0;
    margin: 12px 0;
    transition: all 0.3s ease;
    padding: 0;
}

.contact-item i {
    color: #1976d2;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    margin-right: 10px;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
}

.contact-item:hover {
    color: #fff;
    transform: translateX(5px);
}

/* ================= BOTTOM FOOTER ================= */
.footer-bottom {
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.copyright {
    font-size: 0.9rem;
    color: #bdbdbd;
    font-weight: 300;
}

.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal a {
    color: #1976d2;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal a:hover {
    color: #42a5f5;
}

/* Hero Section */
.hero-section {
    padding: 80px 20px 60px;
    text-align: center;
    color: white;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-feature {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 25px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature i {
    margin-right: 8px;
    color: #64B5F6;
}

/* Main Content */
.main-content {
    background: white;
    margin: -30px 20px 0;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.15);
    min-height: 70vh;
    position: relative;
    z-index: 10;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
}

.page-title {
    text-align: center;
    margin-bottom: 50px;
}

.page-title h1 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.page-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Terms Content */
.terms-grid {
    display: grid;
    gap: 30px;
}

.term-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 35px;
    border-left: 5px solid #1976D2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.term-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.1) 0%, transparent 70%);
    border-radius: 0 20px 0 50px;
}

.term-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.term-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.term-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(25, 118, 210, 0.3);
}

.term-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1976D2;
    flex: 1;
}

.term-content p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.term-content ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.term-content li {
    background: rgba(25, 118, 210, 0.05);
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 3px solid #1976D2;
    position: relative;
    padding-left: 50px;
}

.term-content li::before {
    content: '\f00c';
    
    font-weight: 900;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #1976D2;
    font-size: 14px;
}

.definition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.definition-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid rgba(25, 118, 210, 0.1);
    transition: all 0.3s ease;
}

.definition-item:hover {
    border-color: #1976D2;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(25, 118, 210, 0.15);
}

.definition-term {
    font-weight: 700;
    color: #1976D2;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.refund-section {
    margin: 25px 0;
}

.refund-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.refund-positive {
    background: linear-gradient(135deg, #e8f5e8 0%, #ffffff 100%);
    border-left: 4px solid #4caf50;
}

.refund-negative {
    background: linear-gradient(135deg, #ffeee8 0%, #ffffff 100%);
    border-left: 4px solid #f44336;
}

.contact-card {
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
    color: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: contactPulse 3s ease-in-out infinite;
}

@keyframes contactPulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.5; }
    50% { transform: scale(1.1) rotate(180deg); opacity: 0.8; }
}

.contact-info {
    position: relative;
    z-index: 2;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.contact-detail i {
    font-size: 1.2rem;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    pointer-events: none;
    opacity: 0.1;
}

.floating-1 {
    top: 20%;
    left: 5%;
    font-size: 3rem;
    color: #1976D2;
    animation: float1 6s ease-in-out infinite;
}

.floating-2 {
    top: 60%;
    right: 5%;
    font-size: 2.5rem;
    color: #667eea;
    animation: float2 8s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-180deg); }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 20px;
        flex-wrap: wrap;
    }
    
    .navbar ul {
        display: none;
        flex-direction: column;
        width: 100%;
        order: 3;
        background: white;
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .navbar ul.show {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        gap: 15px;
    }
    
    .hero-feature {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .page-title h1 {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
    
    .contact-form {
        flex-direction: column;
    }
    
    .contact-form input {
        min-width: auto;
    }
    
    .floating-1,
    .floating-2 {
        display: none;
    }
    
    .content-container {
        padding: 40px 20px;
    }
    
    .term-card {
        padding: 25px;
    }
    
    .contact-details {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 15px;
    }
    
    .hero-section {
        padding: 60px 15px 40px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .main-content {
        margin: -20px 10px 0;
    }
    
    .content-container {
        padding: 30px 15px;
    }
    
    .term-card {
        padding: 20px;
    }
    
    .term-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-card {
        padding: 25px;
        margin: 30px 0;
    }
    
    .definition-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        border-radius: 0 0 12px 12px;
    }
}